1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 03:17:34 +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

@ -28,7 +28,7 @@
#include <AK/String.h>
#include <LibCore/ArgsParser.h>
#include <LibCore/File.h>
#include <LibMarkdown/MDDocument.h>
#include <LibMarkdown/Document.h>
#include <stdio.h>
#include <unistd.h>
@ -101,7 +101,7 @@ int main(int argc, char* argv[])
printf("%s(%s)\t\tSerenityOS manual\n", name, section);
MDDocument document;
Markdown::Document document;
bool success = document.parse(source);
ASSERT(success);