1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 04:48:14 +00:00

LibMarkdown: Drop MD prefixes and move into "Markdown" namespace :^)

This commit is contained in:
Andreas Kling 2020-04-28 21:04:25 +02:00
parent 104969a9f5
commit ea204ef05b
18 changed files with 131 additions and 78 deletions

View file

@ -36,7 +36,7 @@
#include <LibGUI/ScrollBar.h>
#include <LibGUI/SyntaxHighlighter.h>
#include <LibGUI/Window.h>
#include <LibMarkdown/MDDocument.h>
#include <LibMarkdown/Document.h>
#include <LibWeb/DOM/ElementFactory.h>
#include <LibWeb/DOM/HTMLHeadElement.h>
#include <LibWeb/DOM/Text.h>
@ -166,7 +166,7 @@ void Editor::show_documentation_tooltip_if_available(const String& hovered_token
return;
}
MDDocument man_document;
Markdown::Document man_document;
bool success = man_document.parse(file->read_all());
if (!success) {