1. 05 Dec, 2021 2 commits
  2. 04 Dec, 2021 5 commits
  3. 18 Nov, 2021 1 commit
  4. 16 Nov, 2021 1 commit
  5. 13 Nov, 2021 2 commits
  6. 06 Nov, 2021 1 commit
  7. 29 Oct, 2021 1 commit
  8. 24 Oct, 2021 12 commits
  9. 23 Oct, 2021 1 commit
  10. 20 Oct, 2021 1 commit
  11. 16 Oct, 2021 3 commits
  12. 10 Oct, 2021 1 commit
    • broxen's avatar
      fix: prevent malformed paths for pages (#4533) · 813df210
      broxen authored
      * First take on removing erroneous path characters
      
      Paths should not accept trailing slashes or hashtags. This is a first attempt at nullifying those.
      
      * Use rules to verify path before acceptance
      
      Use Regex and rules to verify paths before acceptance
      
      * Rules to prevent any leading or trailing slashes
      
      * Complex slug for regex on path, but it elminates special chars
      
      * Added yarn.lock to .gitignore
      
      * Maybe we do want yarn.lock afterall
      
      * Adding yarn.lock
      
      * Move Regex pattern outside of export
      813df210
  13. 09 Oct, 2021 8 commits
  14. 02 Oct, 2021 1 commit
    • broxen's avatar
      fix: hide keyline when footnotes are preceded by header (#4529) · 3e795777
      broxen authored
      Hide key-line created by `markdown-it-footnote` template when footnotes are directly preceded by header.
      
      Examples:
      ```md
      # References
      [^1]: Shows no key-line because References header has one already
      
      # New Page
      Text goes here and whatever else
      
      [^1]: these footnotes have no preceding header and will show a key-line
      ```
      3e795777