1
Fork 0
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:
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

@ -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) {