Changelog
rd2markdown 0.1.2
- Rework
levelparameter making it root level (title by default) which is later used to determine depth od latter sections
rd2markdown 0.1.1
- Fix
clean_text_newlinesand make it properly add (or not) new lines between TEXT tags
rd2markdown 0.1.0
- Add
find_package_roothelper and rebuild how the package discovers default macros locations.
rd2markdown 0.0.9
- Add
block()aroundrd2markdown.descriptionto make sure all subsections render appropriately.
rd2markdown 0.0.7
Add
rd2markdown.subsectionto further support various .Rd structures. And explicitly enhances the support for the inst/NEWS.rd files. (?utils::news)rd2markdown.sectionnow returns output as a block to make sure it is wrapped with new lines and renders sections properly.add
merge_text_spacesfunctions that merges standalone TEXT spaces (" ") into surrounding TEXT tags. Excessive spaces are not rendered by markdown and therefore can be appended to other meaningful tags. (To later get reduced by the “clean_text_whitespace”)Add
levelsparameter to most of the tags that could be nested in subsection to make sure proper amount of#is appended.
rd2markdown 0.0.6
-
rd2markdown.itemno longer throws an error if\\itemtag was miss used in the .Rd file and is read aslist().
rd2markdown 0.0.5
-
\code{}no longer throws unnecessary warnings for long\code{}contents. (#28 @dgkf)
rd2markdown 0.0.4
- Fix the bug where empty
\verb{}tag would causerd2markdown.codeto throw unexpected warnings and NAs (#22 @maksymiuks).
rd2markdown 0.0.3
Stop trimming white signs in
rd2markdown.TEXTandmap_rd2markdown. This should ensure that paragraphs are applied whenever they are necessary instead of being skipped. (#17 @maksymiuks, @dgkf)Enhance behavior of the
rd2markdown.characterfunction allowing it to discover improper arguments names and rise meaningful errors. (@maksymiuks)
rd2markdown 0.0.2
Adding preformatted code block handling (#15 @dgkf)
Minor change to S3 method exports (#1 @dgkf)
Minor bug fix to header formatting (additional preceeding newline), which affects a subset of markdown renderers (#3 @dgkf)
Add
macrosparameter toget_rd()function to allow handling of custom macros while converting to markdown. (#6 @maksymiuks)Replace any possible
character(0)with""in therd2markdown.tabular, additional handling for missing lines/cells in table rendering (#8 @maksymiuks, @dgkf)