api_v3: document: begin by renaming pertinent files
This commit is contained in:
parent
234354e4ad
commit
419422bd9a
6 changed files with 10 additions and 10 deletions
2
Makefile
2
Makefile
|
@ -7,11 +7,11 @@ endif
|
|||
HOEDOWN_SRC=\
|
||||
src/autolink.o \
|
||||
src/buffer.o \
|
||||
src/document.o \
|
||||
src/escape.o \
|
||||
src/html.o \
|
||||
src/html_blocks.o \
|
||||
src/html_smartypants.o \
|
||||
src/markdown.o \
|
||||
src/stack.o
|
||||
|
||||
.PHONY: all test test-pl clean
|
||||
|
|
|
@ -4,11 +4,11 @@ CFLAGS = /O2 /sdl /Isrc /D_CRT_SECURE_NO_WARNINGS
|
|||
HOEDOWN_SRC = \
|
||||
src\autolink.obj \
|
||||
src\buffer.obj \
|
||||
src\document.obj \
|
||||
src\escape.obj \
|
||||
src\html.obj \
|
||||
src\html_blocks.obj \
|
||||
src\html_smartypants.obj \
|
||||
src\markdown.obj \
|
||||
src\stack.obj
|
||||
|
||||
all: hoedown.dll hoedown.exe smartypants.exe
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "markdown.h"
|
||||
#include "document.h"
|
||||
#include "html.h"
|
||||
|
||||
#include <errno.h>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* markdown.c - generic markdown parser */
|
||||
/* document.c - generic markdown parser */
|
||||
|
||||
#include "markdown.h"
|
||||
#include "document.h"
|
||||
|
||||
#include <assert.h>
|
||||
#include <string.h>
|
|
@ -1,7 +1,7 @@
|
|||
/* markdown.h - generic markdown parser */
|
||||
/* document.h - generic markdown parser */
|
||||
|
||||
#ifndef HOEDOWN_MARKDOWN_H
|
||||
#define HOEDOWN_MARKDOWN_H
|
||||
#ifndef HOEDOWN_DOCUMENT_H
|
||||
#define HOEDOWN_DOCUMENT_H
|
||||
|
||||
#include "buffer.h"
|
||||
#include "autolink.h"
|
||||
|
@ -133,4 +133,4 @@ hoedown_version(int *major, int *minor, int *revision);
|
|||
}
|
||||
#endif
|
||||
|
||||
#endif /** HOEDOWN_MARKDOWN_H **/
|
||||
#endif /** HOEDOWN_DOCUMENT_H **/
|
|
@ -3,7 +3,7 @@
|
|||
#ifndef HOEDOWN_HTML_H
|
||||
#define HOEDOWN_HTML_H
|
||||
|
||||
#include "markdown.h"
|
||||
#include "document.h"
|
||||
#include "buffer.h"
|
||||
#include <stdlib.h>
|
||||
|
||||
|
|
Loading…
Reference in a new issue