roxygen2md icon indicating copy to clipboard operation
roxygen2md copied to clipboard

feature request: adding support for lists

Open IndrajeetPatil opened this issue 2 years ago • 3 comments

library(roxygen2md)

text <- c(
  "Here are the items:
  \\itemize{
   \\item{item-1}
   \\item{item-2}
  }"
)

text
#> [1] "Here are the items:\n  \\itemize{\n   \\item{item-1}\n   \\item{item-2}\n  }"

markdownify(text)
#> [1] "Here are the items:\n  \\itemize{\n   \\item{item-1}\n   \\item{item-2}\n  }"

Created on 2021-07-22 by the reprex package (v2.0.0)

IndrajeetPatil avatar Jul 22 '21 11:07 IndrajeetPatil

Agree that this would be awesome!

danielinteractive avatar Jul 06 '22 08:07 danielinteractive