mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:07:35 +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
|
@ -27,7 +27,7 @@
|
|||
#include <AK/ByteBuffer.h>
|
||||
#include <AK/String.h>
|
||||
#include <LibCore/File.h>
|
||||
#include <LibMarkdown/MDDocument.h>
|
||||
#include <LibMarkdown/Document.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
|
@ -70,7 +70,7 @@ int main(int argc, char* argv[])
|
|||
dbg() << "Read size " << buffer.size();
|
||||
|
||||
auto input = String::copy(buffer);
|
||||
MDDocument document;
|
||||
Markdown::Document document;
|
||||
success = document.parse(input);
|
||||
|
||||
if (!success) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue