Some cleanup on examples/

This commit is contained in:
Xavier Mendez 2013-09-20 19:06:25 +02:00
parent 2845a9e5c2
commit 7d69ddd4af
2 changed files with 1 additions and 4 deletions

View file

@ -1,6 +1,5 @@
#include "markdown.h"
#include "html.h"
#include "buffer.h"
#include <errno.h>
#include <stdio.h>

View file

@ -1,6 +1,4 @@
#include "markdown.h"
#include "html.h"
#include "buffer.h"
#include <errno.h>
#include <getopt.h>
@ -38,7 +36,7 @@ main(int argc, char **argv)
if (in != stdin)
fclose(in);
/* performing markdown parsing */
/* performing SmartyPants parsing */
ob = hoedown_buffer_new(OUTPUT_UNIT);
hoedown_html_smartypants(ob, ib->data, ib->size);