Commit Graph

16 Commits

Author SHA1 Message Date
luca0N! 12814571cf
Fix list line break issue (#5)
Fixed an issue which would cause the MarkdownParser to prematurely end a list on a single line break.
2023-09-07 23:10:02 -03:00
luca0N! 340046a264
Fix URL escape bug
Fixed a bug which caused the Markdown interpreter to ignore escaped '-' characters.
2022-09-12 07:28:42 -03:00
luca0N! b58db4b9e7
Fix character escape bug
Fixed a bug which caused MarkdownParser to print the leading backslash
when escaping special Markdown characters.
2022-05-24 20:02:41 -03:00
luca0N! 7dc67e3563
Fix function argument
Fixed multiple append() calls which passed the address of the character
instead of its actual value.
2022-03-30 15:24:12 -03:00
luca0N! fc48dfc0a5
Ignore markdown when reading HTML comments 2022-03-30 15:19:03 -03:00
luca0N! 17f7b3ec8b
[MarkdownParser] Add whitespace on line break 2022-03-30 14:15:52 -03:00
luca0N! 69bf645246
Fix unordered list interpretation
Fixed a bug which caused MarkdownParser to add dashes to the beginning
of the buffer when it contains a dash which is not used to specify an
item of an unordered list.
2022-03-29 23:55:05 -03:00
luca0N! 0ecdfa1dae
Add strike tag support
Add strike tag support to MarkdownParser.
2022-03-22 18:05:36 -03:00
luca0N! 00d22de1a2
Fix bold tag bug
Fixed a bug which caused the append() function on MarkdownParser to add
an extra undesirable byte in between characters inside of bold tags.
2022-03-22 17:57:19 -03:00
luca0N! 1cc18e0b2a
Fix unordered list interpretation
Fixed a bug which closed the HTML unordered list tag prematurely if the
file buffer ended before the end of the line.
2022-03-22 17:44:13 -03:00
luca0N! c4d83a9eef
Add hyperlink support to MarkdownParser
MarkdownParser now supports hyperlinks.
2022-03-08 18:00:41 -03:00
luca0N! 5ecf95a4bf
Finished unordered list implementation
Finished the unordered list implementation in MarkdownParser.
2022-03-03 18:00:52 -03:00
luca0N! 58710d07c5
Add initial <ul> list support
Added initial support for unordered lists.  This update adds <li> tags,
but doesn't add <ul> tags.
2022-03-02 18:51:36 -03:00
luca0N! 4c47a02f61
Fix MarkdownParser paragraph interpretation
Fixed a bug that added multiple paragraph HTML tags on non-paragraph new
lines.
2022-03-02 18:08:37 -03:00
luca0N! 9f94172050
Added paragraph support to MarkdownParser
MarkdownParser will now recognize and insert paragraphs.
2022-03-02 17:44:07 -03:00
luca0N! 333f59131a
Add Markdown parser
Added initial C++ Markdown support.
2022-02-25 18:52:16 -03:00