Skip to content

Instantly share code, notes, and snippets.

@geotheory
Created March 15, 2021 17:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geotheory/4726b1c1d34394fd1fe68f28b7936a0f to your computer and use it in GitHub Desktop.
Save geotheory/4726b1c1d34394fd1fe68f28b7936a0f to your computer and use it in GitHub Desktop.
# 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