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:
parent
104969a9f5
commit
ea204ef05b
18 changed files with 131 additions and 78 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue