Convert from CommonMark XML to (R) Markdown
See also
Other CommonMark parsing functions:
md_to_xml()
,
md_xml_subnode_ix()
Examples
"# A title
Some prose.
## A subtitle
More prose.
## Another subtitle
Out of prose here.
### A sub-subtitle
I'm dug in.
# Another title
A last word." |>
pal::md_to_xml() |>
xml2::xml_contents() |>
pal::xml_to_md() |>
cat()
#> Warning: cannot open compressed file '/home/salim/.cache/pal-roxy_tag_value-tinkr/tinkr/DESCRIPTION', probable reason 'No such file or directory'
#> # A title
#>
#> Some prose.
#>
#> ## A subtitle
#>
#> More prose.
#>
#> ## Another subtitle
#>
#> Out of prose here.
#>
#> ### A sub-subtitle
#>
#> I'm dug in.
#>
#> # Another title
#>
#> A last word.