Skip to content

Latest commit

 

History

History
107 lines (62 loc) · 6.05 KB

TODO.md

File metadata and controls

107 lines (62 loc) · 6.05 KB

TODO

General

  • a cleaner approach to parse the MD would be relying on commonmark::markdown_xml() or pal::md_xml() which builds upon the former; besides there's the tinkr package which also builds upon that, its to_xml() seems to offer an additional param anchor_links to properly handle reference-style links (which aren't supported by CommonMark?); tinkr also offers to_md() which converts the XML back to (R)md

stuff to finish

  • rename package to tocr

    • minor issue: there's another R package named tocR to crawl TOR sites (not on CRAN) -> ideally its author would rename it to torc!
  • add_toc(): remove param add_title and use title = NULL to disable the title

  • remove Markdown footnotes from TOC entries; example: https://gitlab.com/c2d-zda/i_voting_dataset/blob/master/ANALYSIS.md

  • finish intro-Vignette

  • add_toc(): add proper @description and @details (i.a. link to intro-Vignette)

  • set up testthat tests!

    • separate md documents for every feature without and with TOC --> running them through add_toc() needs to produce identical results!
    • huge mega md document (or several of them) without and with TOC --> running it through add_toc() needs to produce an identical result!
    • handle_existing_toc() --> TOC comment detection
      • see /home/salim/Schreibtisch/Markdown TOC - comment format.jpg

Bugs

  • umlauts aren't lowercased as requied (at least not when format = "gitlab")

  • fix handling of trailing # in header processing (adhere to <try.commonmark.org>)

  • duplicated h1 header (strange in general) if position > 7 and < 27:

    readLines(con = "https://raw.githubusercontent.com/thlorenz/doctoc/1d386261972d35c6bcd187d0a00e666f9d893d8d/README.md") %>%
      add_toc(position = 15) %>%
        cat(sep = "\n")
    

Features

to add a TOC

to spread package