md4tj/README.md

44 lines
1.1 KiB
Markdown
Raw Normal View History

2022-12-28 11:44:47 -05:00
# md4tj
2022-12-28 17:04:46 -05:00
## Summary
A language and parser written in Emacs Lisp for my custom extension of Markdown, md4tj. Main features are div declarations, RSS support, and support of only a subset of the Markdown language that I need
## Progress
### Basic Syntax
- [x] Heading
- [x] Bold
- [x] Italic
2024-03-30 21:46:50 -04:00
- [x] Blockquote (no nesting)
2022-12-29 11:38:21 -05:00
- [x] Ordered List
- [x] Unordered List
2022-12-28 17:04:46 -05:00
- [x] Code
- [x] Horizontal Rule
- [x] Link
- [x] Image
### Extended Syntax
- [x] Table (stricter syntax than standard: outer pipes required)
2022-12-29 11:38:21 -05:00
- [x] Fenced Code Block
2022-12-28 17:04:46 -05:00
- [ ] Footnote (Will not implement)
- [ ] Heading ID (Will not implement)
- [ ] Definition List (Will not implement)
- [x] Strikethrough
2022-12-28 17:04:46 -05:00
- [ ] Task List (Will not implement)
- [ ] Emoji (Will not implement)
- [x] Highlight
2022-12-28 17:04:46 -05:00
- [ ] Subscript (Will not implement)
- [ ] Superscript (Will not implement)
### md4tj's Custom Extensions
- [x] Custom Divs
2023-03-26 08:19:30 -04:00
- [x] Blog generation
2023-07-10 09:55:55 -04:00
- [x] RSS feeds for blogs
2023-01-04 14:58:05 -05:00
- [x] LaTeX image generation and embedding
2023-01-04 10:30:23 -05:00
- [x] Including other md4tj files
- [x] Videos
- [x] Last updated directive
2023-01-04 10:30:23 -05:00
- [x] Meta directive
- [x] Page title directive
2023-01-04 12:32:01 -05:00
- [x] CSS inclusion directive
2024-03-30 20:03:25 -04:00
- [x] Language directive