summaryrefslogtreecommitdiff
path: root/Userland/md.cpp
AgeCommit message (Collapse)Author
2019-12-09AK: Use size_t for the length of stringsAndreas Kling
Using int was a mistake. This patch changes String, StringImpl, StringView and StringBuilder to use size_t instead of int for lengths. Obviously a lot of code needs to change as a result of this.
2019-09-28Userland: Add an md commandSergey Bugaev
This command uses LibMarkdown to parse and render Markdown documents either for the terminal using escape sequences, or to HTML. For example, you can now do: $ md ReadMe.md to read the Serenity ReadMe file ^)