summaryrefslogtreecommitdiff
path: root/Libraries/LibMarkdown/Text.cpp
AgeCommit message (Collapse)Author
2020-11-29LibMarkdown: Only consider "!" a special character when followed by "["Linus Groh
Fixes #4220.
2020-09-27LibMarkdown: Add a Text(String) constructorAnotherTest
2020-09-12LibMarkdown: Make warning messages conditionalBen Wiederhake
This is especially a problem during fuzzing.
2020-05-30LibMarkdown: Change internal MD API to return OwnPtrsFalseHonesty
Previously, all Markdown blocks had a virtual parse method which has been swapped out for a static parse method returning an OwnPtr of that block's type. The Text class also now has a static parse method that will return an Optional<Text>.
2020-05-09LibMarkdown: Turn absolute links into hyperlinks in terminal output :^)Andreas Kling
I'm not completely sure how to handle this nicely for relative links but it would be nice to do that too.
2020-05-05LibMarkdown: Escape HTML entities in textLinus Groh
2020-04-30LibMarkdown: Add support for images :^)Sergey Bugaev
2020-04-30LibMarkdown: Handle broken link markup betterSergey Bugaev
Let's output *something* instead of crashing on a failed assertion.
2020-04-28LibMarkdown: Drop MD prefixes and move into "Markdown" namespace :^)Andreas Kling