Open ismayc opened 3 months ago
The fix is to replace all kable() |> kable_styling() with kbl() |> kable_styling() where kbl() is from the kableExtra package. This has been done for v2, but v1 published at moderndive.com also needs to be updated.
kable() |> kable_styling()
kbl() |> kable_styling()
kbl()
kableExtra
The fix is to replace all
kable() |> kable_styling()
withkbl() |> kable_styling()
wherekbl()
is from thekableExtra
package. This has been done for v2, but v1 published at moderndive.com also needs to be updated.