Created
March 15, 2021 17:01
-
-
Save geotheory/4726b1c1d34394fd1fe68f28b7936a0f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# string markdown to html conversion (HT https://github.com/matt-dray) | |
purrr::map_chr( | |
c("# title", "regular **bold**"), | |
~ markdown::renderMarkdown(text = .x) | |
) | |
#> [1] "<h1>title</h1>\n" | |
#> [2] "<p>regular <strong>bold</strong></p>\n" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment