diff options
author | Vicent Marti <tanoku@gmail.com> | 2014-09-04 18:49:33 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2014-09-09 03:39:16 +0200 |
commit | 19ba82d7a30bd999a25fc303a8516056880abc9d (patch) | |
tree | 9e44eae3e263718d35bef9c99220a8ef7d1b9fb1 /src/html | |
parent | 9e4855365b920c2a80b0f1ab6937280f0b504334 (diff) |
Rename node_block
Diffstat (limited to 'src/html')
-rw-r--r-- | src/html/html.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/html/html.c b/src/html/html.c index a7bb21a..6041fde 100644 --- a/src/html/html.c +++ b/src/html/html.c @@ -8,7 +8,7 @@ #include "debug.h" #include "html/houdini.h" -// Functions to convert block and inline lists to HTML strings. +// Functions to convert node_block and inline lists to HTML strings. static void escape_html(strbuf *dest, const unsigned char *source, int length) { @@ -32,8 +32,8 @@ static inline void cr(strbuf *html) strbuf_putc(html, '\n'); } -// Convert a block list to HTML. Returns 0 on success, and sets result. -void blocks_to_html(strbuf *html, block *b, bool tight) +// Convert a node_block list to HTML. Returns 0 on success, and sets result. +void blocks_to_html(strbuf *html, node_block *b, bool tight) { struct ListData *data; |