| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893 |
- /* markdown: a C implementation of John Gruber's Markdown markup language.
- *
- * Copyright (C) 2007 David L Parsons.
- * The redistribution terms are provided in the COPYRIGHT file that must
- * be distributed with this source code.
- */
- #include <stdio.h>
- #include <string.h>
- #include <stdarg.h>
- #include <stdlib.h>
- #include <time.h>
- #include <ctype.h>
- #include "config.h"
- #include "cstring.h"
- #include "markdown.h"
- #include "amalloc.h"
- typedef int (*stfu)(const void*,const void*);
- typedef void (*spanhandler)(MMIOT*,int);
- /* forward declarations */
- static void text(MMIOT *f);
- static Paragraph *display(Paragraph*, MMIOT*);
- /* externals from markdown.c */
- int __mkd_footsort(Footnote *, Footnote *);
- /*
- * push text into the generator input buffer
- */
- static void
- push(char *bfr, int size, MMIOT *f)
- {
- while ( size-- > 0 )
- EXPAND(f->in) = *bfr++;
- }
- /*
- * push a character into the generator input buffer
- */
- static void
- pushc(char c, MMIOT *f)
- {
- EXPAND(f->in) = c;
- }
- /* look <i> characters ahead of the cursor.
- */
- static inline int
- peek(MMIOT *f, int i)
- {
- i += (f->isp-1);
- return (i >= 0) && (i < S(f->in)) ? T(f->in)[i] : EOF;
- }
- /* pull a byte from the input buffer
- */
- static inline int
- pull(MMIOT *f)
- {
- return ( f->isp < S(f->in) ) ? T(f->in)[f->isp++] : EOF;
- }
- /* return a pointer to the current position in the input buffer.
- */
- static inline char*
- cursor(MMIOT *f)
- {
- return T(f->in) + f->isp;
- }
- static inline int
- isthisspace(MMIOT *f, int i)
- {
- int c = peek(f, i);
- if ( c == EOF )
- return 1;
- if ( c & 0x80 )
- return 0;
- return isspace(c) || (c < ' ');
- }
- static inline int
- isthisalnum(MMIOT *f, int i)
- {
- int c = peek(f, i);
- return (c != EOF) && isalnum(c);
- }
- static inline int
- isthisnonword(MMIOT *f, int i)
- {
- return isthisspace(f, i) || ispunct(peek(f,i));
- }
- /* return/set the current cursor position
- */
- #define mmiotseek(f,x) (f->isp = x)
- #define mmiottell(f) (f->isp)
- /* move n characters forward ( or -n characters backward) in the input buffer.
- */
- static void
- shift(MMIOT *f, int i)
- {
- if (f->isp + i >= 0 )
- f->isp += i;
- }
- /* Qchar()
- */
- static void
- Qchar(int c, MMIOT *f)
- {
- block *cur;
- if ( S(f->Q) == 0 ) {
- cur = &EXPAND(f->Q);
- memset(cur, 0, sizeof *cur);
- cur->b_type = bTEXT;
- }
- else
- cur = &T(f->Q)[S(f->Q)-1];
- EXPAND(cur->b_text) = c;
- }
- /* Qstring()
- */
- static void
- QstringSTD(char *s, MMIOT *f)
- {
- while (*s)
- Qchar(*s++, f);
- }
- typedef void (*mkd_qstring_t)(char*, MMIOT*);
- static void
- (*Qstring)(char *s, MMIOT *f) = &QstringSTD;
- mkd_qstring_t
- mkd_e_qstring(mkd_qstring_t qstring_func){
- mkd_qstring_t old = Qstring;
- Qstring = qstring_func;
- return old;
- }
- /* Qwrite()
- */
- static void
- Qwrite(char *s, int size, MMIOT *f)
- {
- while (size-- > 0)
- Qchar(*s++, f);
- }
- /* Qprintf()
- */
- static void
- Qprintf(MMIOT *f, char *fmt, ...)
- {
- char bfr[80];
- va_list ptr;
- va_start(ptr,fmt);
- vsnprintf(bfr, sizeof bfr, fmt, ptr);
- va_end(ptr);
- Qstring(bfr, f);
- }
- /* Qem()
- */
- static void
- Qem(MMIOT *f, char c, int count)
- {
- block *p = &EXPAND(f->Q);
- memset(p, 0, sizeof *p);
- p->b_type = (c == '*') ? bSTAR : bUNDER;
- p->b_char = c;
- p->b_count = count;
- memset(&EXPAND(f->Q), 0, sizeof(block));
- }
- /* generate html from a markup fragment
- */
- void
- ___mkd_reparse(char *bfr, int size, int flags, MMIOT *f, char *esc)
- {
- MMIOT sub;
- struct escaped e;
- ___mkd_initmmiot(&sub, f->footnotes);
- sub.flags = f->flags | flags;
- sub.cb = f->cb;
- sub.ref_prefix = f->ref_prefix;
- if ( esc ) {
- sub.esc = &e;
- e.up = f->esc;
- e.text = esc;
- }
- else
- sub.esc = f->esc;
- push(bfr, size, &sub);
- EXPAND(sub.in) = 0;
- S(sub.in)--;
- text(&sub);
- ___mkd_emblock(&sub);
- Qwrite(T(sub.out), S(sub.out), f);
- ___mkd_freemmiot(&sub, f->footnotes);
- }
- /*
- * check the escape list for special cases
- */
- static int
- escaped(MMIOT *f, char c)
- {
- struct escaped *thing = f->esc;
- while ( thing ) {
- if ( strchr(thing->text, c) )
- return 1;
- thing = thing->up;
- }
- return 0;
- }
- /*
- * write out a url, escaping problematic characters
- */
- static void
- puturl(char *s, int size, MMIOT *f, int display)
- {
- unsigned char c;
- while ( size-- > 0 ) {
- c = *s++;
- if ( c == '\\' && size-- > 0 ) {
- c = *s++;
- if ( !( ispunct(c) || isspace(c) ) )
- Qchar('\\', f);
- }
- if ( c == '&' )
- Qstring("&", f);
- else if ( c == '<' )
- Qstring("<", f);
- else if ( c == '"' )
- Qstring("%22", f);
- else if ( isalnum(c) || ispunct(c) || (display && isspace(c)) )
- Qchar(c, f);
- else if ( c == MKD_EOLN ) /* untokenize hard return */
- Qstring(" ", f);
- else
- Qprintf(f, "%%%02X", c);
- }
- }
- /* advance forward until the next character is not whitespace
- */
- static int
- eatspace(MMIOT *f)
- {
- int c;
- for ( ; ((c=peek(f, 1)) != EOF) && isspace(c); pull(f) )
- ;
- return c;
- }
- /* (match (a (nested (parenthetical (string.)))))
- */
- static int
- parenthetical(int in, int out, MMIOT *f)
- {
- int size, indent, c;
- for ( indent=1,size=0; indent; size++ ) {
- if ( (c = pull(f)) == EOF )
- return EOF;
- else if ( (c == '\\') && (peek(f,1) == out || peek(f,1) == in) ) {
- ++size;
- pull(f);
- }
- else if ( c == in )
- ++indent;
- else if ( c == out )
- --indent;
- }
- return size ? (size-1) : 0;
- }
- /* extract a []-delimited label from the input stream.
- */
- static int
- linkylabel(MMIOT *f, Cstring *res)
- {
- char *ptr = cursor(f);
- int size;
- if ( (size = parenthetical('[',']',f)) != EOF ) {
- T(*res) = ptr;
- S(*res) = size;
- return 1;
- }
- return 0;
- }
- /* see if the quote-prefixed linky segment is actually a title.
- */
- static int
- linkytitle(MMIOT *f, char quote, Footnote *ref)
- {
- int whence = mmiottell(f);
- char *title = cursor(f);
- char *e;
- register int c;
- while ( (c = pull(f)) != EOF ) {
- e = cursor(f);
- if ( c == quote ) {
- if ( (c = eatspace(f)) == ')' ) {
- T(ref->title) = 1+title;
- S(ref->title) = (e-title)-2;
- return 1;
- }
- }
- }
- mmiotseek(f, whence);
- return 0;
- }
- /* extract a =HHHxWWW size from the input stream
- */
- static int
- linkysize(MMIOT *f, Footnote *ref)
- {
- int height=0, width=0;
- int whence = mmiottell(f);
- int c;
- if ( isspace(peek(f,0)) ) {
- pull(f); /* eat '=' */
- for ( c = pull(f); isdigit(c); c = pull(f))
- width = (width * 10) + (c - '0');
- if ( c == 'x' ) {
- for ( c = pull(f); isdigit(c); c = pull(f))
- height = (height*10) + (c - '0');
- if ( isspace(c) )
- c = eatspace(f);
- if ( (c == ')') || ((c == '\'' || c == '"') && linkytitle(f, c, ref)) ) {
- ref->height = height;
- ref->width = width;
- return 1;
- }
- }
- }
- mmiotseek(f, whence);
- return 0;
- }
- /* extract a <...>-encased url from the input stream.
- * (markdown 1.0.2b8 compatibility; older versions
- * of markdown treated the < and > as syntactic
- * sugar that didn't have to be there. 1.0.2b8
- * requires a closing >, and then falls into the
- * title or closing )
- */
- static int
- linkybroket(MMIOT *f, int image, Footnote *p)
- {
- int c;
- int good = 0;
- T(p->link) = cursor(f);
- for ( S(p->link)=0; (c = pull(f)) != '>'; ++S(p->link) ) {
- /* pull in all input until a '>' is found, or die trying.
- */
- if ( c == EOF )
- return 0;
- else if ( (c == '\\') && ispunct(peek(f,2)) ) {
- ++S(p->link);
- pull(f);
- }
- }
- c = eatspace(f);
- /* next nonspace needs to be a title, a size, or )
- */
- if ( ( c == '\'' || c == '"' ) && linkytitle(f,c,p) )
- good=1;
- else if ( image && (c == '=') && linkysize(f,p) )
- good=1;
- else
- good=( c == ')' );
- if ( good ) {
- if ( peek(f, 1) == ')' )
- pull(f);
- ___mkd_tidy(&p->link);
- }
- return good;
- } /* linkybroket */
- /* extract a (-prefixed url from the input stream.
- * the label is either of the format `<link>`, where I
- * extract until I find a >, or it is of the format
- * `text`, where I extract until I reach a ')', a quote,
- * or (if image) a '='
- */
- static int
- linkyurl(MMIOT *f, int image, Footnote *p)
- {
- int c;
- int mayneedtotrim=0;
- if ( (c = eatspace(f)) == EOF )
- return 0;
- if ( c == '<' ) {
- pull(f);
- if ( !(f->flags & MKD_1_COMPAT) )
- return linkybroket(f,image,p);
- mayneedtotrim=1;
- }
- T(p->link) = cursor(f);
- for ( S(p->link)=0; (c = peek(f,1)) != ')'; ++S(p->link) ) {
- if ( c == EOF )
- return 0;
- else if ( (c == '"' || c == '\'') && linkytitle(f, c, p) )
- break;
- else if ( image && (c == '=') && linkysize(f, p) )
- break;
- else if ( (c == '\\') && ispunct(peek(f,2)) ) {
- ++S(p->link);
- pull(f);
- }
- pull(f);
- }
- if ( peek(f, 1) == ')' )
- pull(f);
- ___mkd_tidy(&p->link);
- if ( mayneedtotrim && (T(p->link)[S(p->link)-1] == '>') )
- --S(p->link);
- return 1;
- }
- /* prefixes for <automatic links>
- */
- static struct _protocol {
- char *name;
- int nlen;
- } protocol[] = {
- #define _aprotocol(x) { x, (sizeof x)-1 }
- _aprotocol( "https:" ),
- _aprotocol( "http:" ),
- _aprotocol( "news:" ),
- _aprotocol( "ftp:" ),
- #undef _aprotocol
- };
- #define NRPROTOCOLS (sizeof protocol / sizeof protocol[0])
- static int
- isautoprefix(char *text, int size)
- {
- int i;
- struct _protocol *p;
- for (i=0, p=protocol; i < NRPROTOCOLS; i++, p++)
- if ( (size >= p->nlen) && strncasecmp(text, p->name, p->nlen) == 0 )
- return 1;
- return 0;
- }
- /*
- * all the tag types that linkylinky can produce are
- * defined by this structure.
- */
- typedef struct linkytype {
- char *pat;
- int szpat;
- char *link_pfx; /* tag prefix and link pointer (eg: "<a href="\"" */
- char *link_sfx; /* link suffix (eg: "\"" */
- int WxH; /* this tag allows width x height arguments */
- char *text_pfx; /* text prefix (eg: ">" */
- char *text_sfx; /* text suffix (eg: "</a>" */
- int flags; /* reparse flags */
- int kind; /* tag is url or something else? */
- #define IS_URL 0x01
- } linkytype;
- static linkytype imaget = { 0, 0, "<img src=\"", "\"",
- 1, " alt=\"", "\" />", MKD_NOIMAGE|MKD_TAGTEXT, IS_URL };
- static linkytype linkt = { 0, 0, "<a href=\"", "\"",
- 0, ">", "</a>", MKD_NOLINKS, IS_URL };
- /*
- * pseudo-protocols for [][];
- *
- * id: generates <a id="link">tag</a>
- * class: generates <span class="link">tag</span>
- * raw: just dump the link without any processing
- */
- static linkytype specials[] = {
- { "id:", 3, "<span id=\"", "\"", 0, ">", "</span>", 0, 0 },
- { "raw:", 4, 0, 0, 0, 0, 0, MKD_NOHTML, 0 },
- { "lang:", 5, "<span lang=\"", "\"", 0, ">", "</span>", 0, 0 },
- { "abbr:", 5, "<abbr title=\"", "\"", 0, ">", "</abbr>", 0, 0 },
- { "class:", 6, "<span class=\"", "\"", 0, ">", "</span>", 0, 0 },
- } ;
- #define NR(x) (sizeof x / sizeof x[0])
- /* see if t contains one of our pseudo-protocols.
- */
- static linkytype *
- pseudo(Cstring t)
- {
- int i;
- linkytype *r;
- for ( i=0, r=specials; i < NR(specials); i++,r++ ) {
- if ( (S(t) > r->szpat) && (strncasecmp(T(t), r->pat, r->szpat) == 0) )
- return r;
- }
- return 0;
- }
- /* print out the start of an `img' or `a' tag, applying callbacks as needed.
- */
- static void
- printlinkyref(MMIOT *f, linkytype *tag, char *link, int size)
- {
- char *edit;
- if ( f->flags & IS_LABEL )
- return;
- Qstring(tag->link_pfx, f);
- if ( tag->kind & IS_URL ) {
- if ( f->cb && f->cb->e_url && (edit = (*f->cb->e_url)(link, size, f->cb->e_data)) ) {
- puturl(edit, strlen(edit), f, 0);
- if ( f->cb->e_free ) (*f->cb->e_free)(edit, f->cb->e_data);
- }
- else
- puturl(link + tag->szpat, size - tag->szpat, f, 0);
- }
- else
- ___mkd_reparse(link + tag->szpat, size - tag->szpat, MKD_TAGTEXT, f, 0);
- Qstring(tag->link_sfx, f);
- if ( f->cb && f->cb->e_flags && (edit = (*f->cb->e_flags)(link, size, f->cb->e_data)) ) {
- Qchar(' ', f);
- Qstring(edit, f);
- if ( f->cb->e_free ) (*f->cb->e_free)(edit, f->cb->e_data);
- }
- } /* printlinkyref */
- /* helper function for php markdown extra footnotes; allow the user to
- * define a prefix tag instead of just `fn`
- */
- static char *
- p_or_nothing(p)
- MMIOT *p;
- {
- return p->ref_prefix ? p->ref_prefix : "fn";
- }
- /* php markdown extra/daring fireball style print footnotes
- */
- static int
- extra_linky(MMIOT *f, Cstring text, Footnote *ref)
- {
- if ( ref->flags & REFERENCED )
- return 0;
- if ( f->flags & IS_LABEL )
- ___mkd_reparse(T(text), S(text), linkt.flags, f, 0);
- else {
- ref->flags |= REFERENCED;
- ref->refnumber = ++ f->footnotes->reference;
- Qprintf(f, "<sup id=\"%sref:%d\"><a href=\"#%s:%d\" rel=\"footnote\">%d</a></sup>",
- p_or_nothing(f), ref->refnumber,
- p_or_nothing(f), ref->refnumber, ref->refnumber);
- }
- return 1;
- } /* extra_linky */
- /* print out a linky (or fail if it's Not Allowed)
- */
- static int
- linkyformat(MMIOT *f, Cstring text, int image, Footnote *ref)
- {
- linkytype *tag;
- if ( image )
- tag = &imaget;
- else if ( tag = pseudo(ref->link) ) {
- if ( f->flags & (MKD_NO_EXT|MKD_SAFELINK) )
- return 0;
- }
- else if ( (f->flags & MKD_SAFELINK) && T(ref->link)
- && (T(ref->link)[0] != '/')
- && !isautoprefix(T(ref->link), S(ref->link)) )
- /* if MKD_SAFELINK, only accept links that are local or
- * a well-known protocol
- */
- return 0;
- else
- tag = &linkt;
- if ( f->flags & tag->flags )
- return 0;
- if ( f->flags & IS_LABEL )
- ___mkd_reparse(T(text), S(text), tag->flags, f, 0);
- else if ( tag->link_pfx ) {
- printlinkyref(f, tag, T(ref->link), S(ref->link));
- if ( tag->WxH ) {
- if ( ref->height ) Qprintf(f," height=\"%d\"", ref->height);
- if ( ref->width ) Qprintf(f, " width=\"%d\"", ref->width);
- }
- if ( S(ref->title) ) {
- Qstring(" title=\"", f);
- ___mkd_reparse(T(ref->title), S(ref->title), MKD_TAGTEXT, f, 0);
- Qchar('"', f);
- }
- Qstring(tag->text_pfx, f);
- ___mkd_reparse(T(text), S(text), tag->flags, f, 0);
- Qstring(tag->text_sfx, f);
- }
- else
- Qwrite(T(ref->link) + tag->szpat, S(ref->link) - tag->szpat, f);
- return 1;
- } /* linkyformat */
- /*
- * process embedded links and images
- */
- static int
- linkylinky(int image, MMIOT *f)
- {
- int start = mmiottell(f);
- Cstring name;
- Footnote key, *ref;
- int status = 0;
- int extra_footnote = 0;
- CREATE(name);
- memset(&key, 0, sizeof key);
- if ( linkylabel(f, &name) ) {
- if ( peek(f,1) == '(' ) {
- pull(f);
- if ( linkyurl(f, image, &key) )
- status = linkyformat(f, name, image, &key);
- }
- else {
- int goodlink, implicit_mark = mmiottell(f);
- if ( isspace(peek(f,1)) )
- pull(f);
- if ( peek(f,1) == '[' ) {
- pull(f); /* consume leading '[' */
- goodlink = linkylabel(f, &key.tag);
- }
- else {
- /* new markdown implicit name syntax doesn't
- * require a second []
- */
- mmiotseek(f, implicit_mark);
- goodlink = !(f->flags & MKD_1_COMPAT);
- if ( (f->flags & MKD_EXTRA_FOOTNOTE) && (!image) && S(name) && T(name)[0] == '^' )
- extra_footnote = 1;
- }
- if ( goodlink ) {
- if ( !S(key.tag) ) {
- DELETE(key.tag);
- T(key.tag) = T(name);
- S(key.tag) = S(name);
- }
- if ( ref = bsearch(&key, T(f->footnotes->note),
- S(f->footnotes->note),
- sizeof key, (stfu)__mkd_footsort) ) {
- if ( extra_footnote )
- status = extra_linky(f,name,ref);
- else
- status = linkyformat(f, name, image, ref);
- }
- else if ( f->flags & IS_LABEL )
- status = linkyformat(f, name, image, 0);
- }
- }
- }
- DELETE(name);
- ___mkd_freefootnote(&key);
- if ( status == 0 )
- mmiotseek(f, start);
- return status;
- }
- /* write a character to output, doing text escapes ( & -> &,
- * > -> > < -> < )
- */
- static void
- cputc(int c, MMIOT *f)
- {
- switch (c) {
- case '&': Qstring("&", f); break;
- case '>': Qstring(">", f); break;
- case '<': Qstring("<", f); break;
- default : Qchar(c, f); break;
- }
- }
- /*
- * convert an email address to a string of nonsense
- */
- static void
- mangle(char *s, int len, MMIOT *f)
- {
- while ( len-- > 0 ) {
- #if DEBIAN_GLITCH
- Qprintf(f, "&#%02d;", *((unsigned char*)(s++)) );
- #else
- Qstring("&#", f);
- Qprintf(f, COINTOSS() ? "x%02x;" : "%02d;", *((unsigned char*)(s++)) );
- #endif
- }
- }
- /* nrticks() -- count up a row of tick marks
- */
- static int
- nrticks(int offset, int tickchar, MMIOT *f)
- {
- int tick = 0;
- while ( peek(f, offset+tick) == tickchar ) tick++;
- return tick;
- } /* nrticks */
- /* matchticks() -- match a certain # of ticks, and if that fails
- * match the largest subset of those ticks.
- *
- * if a subset was matched, return the # of ticks
- * that were matched.
- */
- static int
- matchticks(MMIOT *f, int tickchar, int ticks, int *endticks)
- {
- int size, count, c;
- int subsize=0, subtick=0;
- *endticks = ticks;
- for (size = 0; (c=peek(f,size+ticks)) != EOF; size ++) {
- if ( (c == tickchar) && ( count = nrticks(size+ticks,tickchar,f)) ) {
- if ( count == ticks )
- return size;
- else if ( count ) {
- if ( (count > subtick) && (count < ticks) ) {
- subsize = size;
- subtick = count;
- }
- size += count;
- }
- }
- }
- if ( subsize ) {
- *endticks = subtick;
- return subsize;
- }
- return 0;
- } /* matchticks */
- /* code() -- write a string out as code. The only characters that have
- * special meaning in a code block are * `<' and `&' , which
- * are /always/ expanded to < and &
- */
- static void
- code(MMIOT *f, char *s, int length)
- {
- int i,c;
- for ( i=0; i < length; i++ )
- if ( (c = s[i]) == MKD_EOLN) /* ^C: expand back to 2 spaces */
- Qstring(" ", f);
- else if ( c == '\\' && (i < length-1) && escaped(f, s[i+1]) )
- cputc(s[++i], f);
- else
- cputc(c, f);
- } /* code */
- /* delspan() -- write out a chunk of text, blocking with <del>...</del>
- */
- static void
- delspan(MMIOT *f, int size)
- {
- Qstring("<del>", f);
- ___mkd_reparse(cursor(f)-1, size, 0, f, 0);
- Qstring("</del>", f);
- }
- /* codespan() -- write out a chunk of text as code, trimming one
- * space off the front and/or back as appropriate.
- */
- static void
- codespan(MMIOT *f, int size)
- {
- int i=0;
- if ( size > 1 && peek(f, size-1) == ' ' ) --size;
- if ( peek(f,i) == ' ' ) ++i, --size;
- Qstring("<code>", f);
- code(f, cursor(f)+(i-1), size);
- Qstring("</code>", f);
- } /* codespan */
- /* before letting a tag through, validate against
- * MKD_NOLINKS and MKD_NOIMAGE
- */
- static int
- forbidden_tag(MMIOT *f)
- {
- int c = toupper(peek(f, 1));
- if ( f->flags & MKD_NOHTML )
- return 1;
- if ( c == 'A' && (f->flags & MKD_NOLINKS) && !isthisalnum(f,2) )
- return 1;
- if ( c == 'I' && (f->flags & MKD_NOIMAGE)
- && strncasecmp(cursor(f)+1, "MG", 2) == 0
- && !isthisalnum(f,4) )
- return 1;
- return 0;
- }
- /* Check a string to see if it looks like a mail address
- * "looks like a mail address" means alphanumeric + some
- * specials, then a `@`, then alphanumeric + some specials,
- * but with a `.`
- */
- static int
- maybe_address(char *p, int size)
- {
- int ok = 0;
- for ( ;size && (isalnum(*p) || strchr("._-+*", *p)); ++p, --size)
- ;
- if ( ! (size && *p == '@') )
- return 0;
- --size, ++p;
- if ( size && *p == '.' ) return 0;
- for ( ;size && (isalnum(*p) || strchr("._-+", *p)); ++p, --size )
- if ( *p == '.' && size > 1 ) ok = 1;
- return size ? 0 : ok;
- }
- /* The size-length token at cursor(f) is either a mailto:, an
- * implicit mailto:, one of the approved url protocols, or just
- * plain old text. If it's a mailto: or an approved protocol,
- * linkify it, otherwise say "no"
- */
- static int
- process_possible_link(MMIOT *f, int size)
- {
- int address= 0;
- int mailto = 0;
- char *text = cursor(f);
- if ( f->flags & MKD_NOLINKS ) return 0;
- if ( (size > 7) && strncasecmp(text, "mailto:", 7) == 0 ) {
- /* if it says it's a mailto, it's a mailto -- who am
- * I to second-guess the user?
- */
- address = 1;
- mailto = 7; /* 7 is the length of "mailto:"; we need this */
- }
- else
- address = maybe_address(text, size);
- if ( address ) {
- Qstring("<a href=\"", f);
- if ( !mailto ) {
- /* supply a mailto: protocol if one wasn't attached */
- mangle("mailto:", 7, f);
- }
- mangle(text, size, f);
- Qstring("\">", f);
- mangle(text+mailto, size-mailto, f);
- Qstring("</a>", f);
- return 1;
- }
- else if ( isautoprefix(text, size) ) {
- printlinkyref(f, &linkt, text, size);
- Qchar('>', f);
- puturl(text,size,f, 1);
- Qstring("</a>", f);
- return 1;
- }
- return 0;
- } /* process_possible_link */
- /* a < may be just a regular character, the start of an embedded html
- * tag, or the start of an <automatic link>. If it's an automatic
- * link, we also need to know if it's an email address because if it
- * is we need to mangle it in our futile attempt to cut down on the
- * spaminess of the rendered page.
- */
- static int
- maybe_tag_or_link(MMIOT *f)
- {
- int c, size;
- int maybetag = 1;
- if ( f->flags & MKD_TAGTEXT )
- return 0;
- for ( size=0; (c = peek(f, size+1)) != '>'; size++) {
- if ( c == EOF )
- return 0;
- else if ( c == '\\' ) {
- maybetag=0;
- if ( peek(f, size+2) != EOF )
- size++;
- }
- else if ( isspace(c) )
- break;
- else if ( ! (c == '/'
- || (f->flags & MKD_GITHUBTAGS && (c == '-' || c == '_'))
- || isalnum(c) ) )
- maybetag=0;
- }
- if ( size ) {
- if ( maybetag || (size >= 3 && strncmp(cursor(f), "!--", 3) == 0) ) {
- /* It is not a html tag unless we find the closing '>' in
- * the same block.
- */
- while ( (c = peek(f, size+1)) != '>' )
- if ( c == EOF )
- return 0;
- else
- size++;
- if ( forbidden_tag(f) )
- return 0;
- Qchar('<', f);
- while ( ((c = peek(f, 1)) != EOF) && (c != '>') )
- Qchar(pull(f), f);
- return 1;
- }
- else if ( !isspace(c) && process_possible_link(f, size) ) {
- shift(f, size+1);
- return 1;
- }
- }
- return 0;
- }
- /* autolinking means that all inline html is <a href'ified>. A
- * autolink url is alphanumerics, slashes, periods, underscores,
- * the at sign, colon, and the % character.
- */
- static int
- maybe_autolink(MMIOT *f)
- {
- register int c;
- int size;
- /* greedily scan forward for the end of a legitimate link.
- */
- for ( size=0; (c=peek(f, size+1)) != EOF; size++ ) {
- if ( c == '\\' ) {
- if ( peek(f, size+2) != EOF )
- ++size;
- }
- else if ( c & 0x80 ) /* HACK: ignore utf-8 extended characters */
- continue;
- else if ( isspace(c) || strchr("'\"()[]{}<>`", c) || c == MKD_EOLN )
- break;
- }
- if ( (size > 1) && process_possible_link(f, size) ) {
- shift(f, size);
- return 1;
- }
- return 0;
- }
- /* smartyquote code that's common for single and double quotes
- */
- static int
- smartyquote(int *flags, char typeofquote, MMIOT *f)
- {
- int bit = (typeofquote == 's') ? 0x01 : 0x02;
- if ( bit & (*flags) ) {
- if ( isthisnonword(f,1) ) {
- Qprintf(f, "&r%cquo;", typeofquote);
- (*flags) &= ~bit;
- return 1;
- }
- }
- else if ( isthisnonword(f,-1) && peek(f,1) != EOF ) {
- Qprintf(f, "&l%cquo;", typeofquote);
- (*flags) |= bit;
- return 1;
- }
- return 0;
- }
- static int
- islike(MMIOT *f, char *s)
- {
- int len;
- int i;
- if ( s[0] == '|' ) {
- if ( !isthisnonword(f, -1) )
- return 0;
- ++s;
- }
- if ( !(len = strlen(s)) )
- return 0;
- if ( s[len-1] == '|' ) {
- if ( !isthisnonword(f,len-1) )
- return 0;
- len--;
- }
- for (i=1; i < len; i++)
- if (tolower(peek(f,i)) != s[i])
- return 0;
- return 1;
- }
- static struct smarties {
- char c0;
- char *pat;
- char *entity;
- int shift;
- } smarties[] = {
- { '\'', "'s|", "rsquo", 0 },
- { '\'', "'t|", "rsquo", 0 },
- { '\'', "'re|", "rsquo", 0 },
- { '\'', "'ll|", "rsquo", 0 },
- { '\'', "'ve|", "rsquo", 0 },
- { '\'', "'m|", "rsquo", 0 },
- { '\'', "'d|", "rsquo", 0 },
- { '-', "---", "mdash", 2 },
- { '-', "--", "ndash", 1 },
- { '.', "...", "hellip", 2 },
- { '.', ". . .", "hellip", 4 },
- { '(', "(c)", "copy", 2 },
- { '(', "(r)", "reg", 2 },
- { '(', "(tm)", "trade", 3 },
- { '3', "|3/4|", "frac34", 2 },
- { '3', "|3/4ths|", "frac34", 2 },
- { '1', "|1/2|", "frac12", 2 },
- { '1', "|1/4|", "frac14", 2 },
- { '1', "|1/4th|", "frac14", 2 },
- { '&', "�", 0, 3 },
- } ;
- #define NRSMART ( sizeof smarties / sizeof smarties[0] )
- /* Smarty-pants-style chrome for quotes, -, ellipses, and (r)(c)(tm)
- */
- static int
- smartypants(int c, int *flags, MMIOT *f)
- {
- int i;
- if ( f->flags & (MKD_NOPANTS|MKD_TAGTEXT|IS_LABEL) )
- return 0;
- for ( i=0; i < NRSMART; i++)
- if ( (c == smarties[i].c0) && islike(f, smarties[i].pat) ) {
- if ( smarties[i].entity )
- Qprintf(f, "&%s;", smarties[i].entity);
- shift(f, smarties[i].shift);
- return 1;
- }
- switch (c) {
- case '<' : return 0;
- case '\'': if ( smartyquote(flags, 's', f) ) return 1;
- break;
- case '"': if ( smartyquote(flags, 'd', f) ) return 1;
- break;
- case '`': if ( peek(f, 1) == '`' ) {
- int j = 2;
- while ( (c=peek(f,j)) != EOF ) {
- if ( c == '\\' )
- j += 2;
- else if ( c == '`' )
- break;
- else if ( c == '\'' && peek(f, j+1) == '\'' ) {
- Qstring("“", f);
- ___mkd_reparse(cursor(f)+1, j-2, 0, f, 0);
- Qstring("”", f);
- shift(f,j+1);
- return 1;
- }
- else ++j;
- }
- }
- break;
- }
- return 0;
- } /* smartypants */
- #if WITH_LATEX
- /* process latex with arbitrary 2-character ( $$ .. $$, \[ .. \], \( .. \)
- * delimiters
- */
- static int
- mathhandler(MMIOT *f, int e1, int e2)
- {
- int i = 0;
- while(peek(f, ++i) != EOF) {
- if (peek(f, i) == e1 && peek(f, i+1) == e2) {
- cputc(peek(f,-1), f);
- cputc(peek(f, 0), f);
- while ( i-- > -1 )
- cputc(pull(f), f);
- return 1;
- }
- }
- return 0;
- }
- #endif
- /* process a body of text encased in some sort of tick marks. If it
- * works, generate the output and return 1, otherwise just return 0 and
- * let the caller figure it out.
- */
- static int
- tickhandler(MMIOT *f, int tickchar, int minticks, int allow_space, spanhandler spanner)
- {
- int endticks, size;
- int tick = nrticks(0, tickchar, f);
- if ( !allow_space && isspace(peek(f,tick)) )
- return 0;
- if ( (tick >= minticks) && (size = matchticks(f,tickchar,tick,&endticks)) ) {
- if ( endticks < tick ) {
- size += (tick - endticks);
- tick = endticks;
- }
- shift(f, tick);
- (*spanner)(f,size);
- shift(f, size+tick-1);
- return 1;
- }
- return 0;
- }
- #define tag_text(f) (f->flags & MKD_TAGTEXT)
- static void
- text(MMIOT *f)
- {
- int c, j;
- int rep;
- int smartyflags = 0;
- while (1) {
- if ( (f->flags & MKD_AUTOLINK) && isalpha(peek(f,1)) && !tag_text(f) )
- maybe_autolink(f);
- c = pull(f);
- if (c == EOF)
- break;
- if ( smartypants(c, &smartyflags, f) )
- continue;
- switch (c) {
- case 0: break;
- case MKD_EOLN:
- Qstring(tag_text(f) ? " " : "<br/>", f);
- break;
- case '>': if ( tag_text(f) )
- Qstring(">", f);
- else
- Qchar(c, f);
- break;
- case '"': if ( tag_text(f) )
- Qstring(""", f);
- else
- Qchar(c, f);
- break;
- case '!': if ( peek(f,1) == '[' ) {
- pull(f);
- if ( tag_text(f) || !linkylinky(1, f) )
- Qstring("![", f);
- }
- else
- Qchar(c, f);
- break;
- case '[': if ( tag_text(f) || !linkylinky(0, f) )
- Qchar(c, f);
- break;
- /* A^B -> A<sup>B</sup> */
- case '^': if ( (f->flags & (MKD_NOSUPERSCRIPT|MKD_STRICT|MKD_TAGTEXT))
- || (isthisnonword(f,-1) && peek(f,-1) != ')')
- || isthisspace(f,1) )
- Qchar(c,f);
- else {
- char *sup = cursor(f);
- int len = 0;
- if ( peek(f,1) == '(' ) {
- int here = mmiottell(f);
- pull(f);
- if ( (len = parenthetical('(',')',f)) <= 0 ) {
- mmiotseek(f,here);
- Qchar(c, f);
- break;
- }
- sup++;
- }
- else {
- while ( isthisalnum(f,1+len) )
- ++len;
- if ( !len ) {
- Qchar(c,f);
- break;
- }
- shift(f,len);
- }
- Qstring("<sup>",f);
- ___mkd_reparse(sup, len, 0, f, "()");
- Qstring("</sup>", f);
- }
- break;
- case '_':
- /* Underscores don't count if they're in the middle of a word */
- if ( !(f->flags & (MKD_NORELAXED|MKD_STRICT))
- && isthisalnum(f,-1)
- && isthisalnum(f,1) ) {
- Qchar(c, f);
- break;
- }
- case '*':
- /* Underscores & stars don't count if they're out in the middle
- * of whitespace */
- if ( isthisspace(f,-1) && isthisspace(f,1) ) {
- Qchar(c, f);
- break;
- }
- /* else fall into the regular old emphasis case */
- if ( tag_text(f) )
- Qchar(c, f);
- else {
- for (rep = 1; peek(f,1) == c; pull(f) )
- ++rep;
- Qem(f,c,rep);
- }
- break;
- case '~': if ( (f->flags & (MKD_NOSTRIKETHROUGH|MKD_TAGTEXT|MKD_STRICT)) || ! tickhandler(f,c,2,0, delspan) )
- Qchar(c, f);
- break;
- case '`': if ( tag_text(f) || !tickhandler(f,c,1,1,codespan) )
- Qchar(c, f);
- break;
- case '\\': switch ( c = pull(f) ) {
- case '&': Qstring("&", f);
- break;
- case '<': c = peek(f,1);
- if ( (c == EOF) || isspace(c) )
- Qstring("<", f);
- else {
- /* Markdown.pl does not escape <[nonwhite]
- * sequences */
- Qchar('\\', f);
- shift(f, -1);
- }
-
- break;
- case '^': if ( f->flags & (MKD_STRICT|MKD_NOSUPERSCRIPT) ) {
- Qchar('\\', f);
- shift(f,-1);
- break;
- }
- Qchar(c, f);
- break;
- case ':': case '|':
- if ( f->flags & MKD_NOTABLES ) {
- Qchar('\\', f);
- shift(f,-1);
- break;
- }
- Qchar(c, f);
- break;
-
- case EOF: Qchar('\\', f);
- break;
- #if WITH_LATEX
- case '[':
- case '(': if ( mathhandler(f, '\\', (c =='(')?')':']') )
- break;
- /* else fall through to default */
- #endif
-
- default: if ( escaped(f,c) ||
- strchr(">#.-+{}]![*_\\()`", c) )
- Qchar(c, f);
- else {
- Qchar('\\', f);
- shift(f, -1);
- }
- break;
- }
- break;
- case '<': if ( !maybe_tag_or_link(f) )
- Qstring("<", f);
- break;
- case '&': j = (peek(f,1) == '#' ) ? 2 : 1;
- while ( isthisalnum(f,j) )
- ++j;
- if ( peek(f,j) != ';' )
- Qstring("&", f);
- else
- Qchar(c, f);
- break;
- #if WITH_LATEX
- case '$': if ( peek(f, 1) == '$' ) {
- pull(f);
- if ( mathhandler(f, '$', '$') )
- break;
- Qchar('$', f);
- }
- /* fall through to default */
- #endif
-
- default: Qchar(c, f);
- break;
- }
- }
- /* truncate the input string after we've finished processing it */
- S(f->in) = f->isp = 0;
- } /* text */
- /* print a header block
- */
- static void
- printheader(Paragraph *pp, MMIOT *f)
- {
- if ( f->flags & MKD_IDANCHOR ) {
- Qprintf(f, "<h%d", pp->hnumber);
- if ( f->flags & MKD_TOC ) {
- Qstring(" id=\"", f);
- mkd_string_to_anchor(T(pp->text->text),
- S(pp->text->text),
- (mkd_sta_function_t)Qchar, f, 1, f->flags);
- Qchar('"', f);
- }
- Qchar('>', f);
- } else {
- if ( f->flags & MKD_TOC ) {
- Qstring("<a name=\"", f);
- mkd_string_to_anchor(T(pp->text->text),
- S(pp->text->text),
- (mkd_sta_function_t)Qchar, f, 1, f->flags);
- Qstring("\"></a>\n", f);
- }
- Qprintf(f, "<h%d>", pp->hnumber);
- }
- push(T(pp->text->text), S(pp->text->text), f);
- text(f);
- Qprintf(f, "</h%d>", pp->hnumber);
- }
- enum e_alignments { a_NONE, a_CENTER, a_LEFT, a_RIGHT };
- static char* alignments[] = { "", " style=\"text-align:center;\"",
- " style=\"text-align:left;\"",
- " style=\"text-align:right;\"" };
- typedef STRING(int) Istring;
- static int
- splat(Line *p, char *block, Istring align, int force, MMIOT *f)
- {
- int first,
- idx = p->dle,
- colno = 0;
- ___mkd_tidy(&p->text);
- if ( T(p->text)[S(p->text)-1] == '|' )
- --S(p->text);
- Qstring("<tr>\n", f);
- while ( idx < S(p->text) ) {
- first = idx;
- if ( force && (colno >= S(align)-1) )
- idx = S(p->text);
- else
- while ( (idx < S(p->text)) && (T(p->text)[idx] != '|') ) {
- if ( T(p->text)[idx] == '\\' )
- ++idx;
- ++idx;
- }
- Qprintf(f, "<%s%s>",
- block,
- alignments[ (colno < S(align)) ? T(align)[colno] : a_NONE ]);
- ___mkd_reparse(T(p->text)+first, idx-first, 0, f, "|");
- Qprintf(f, "</%s>\n", block);
- idx++;
- colno++;
- }
- if ( force )
- while (colno < S(align) ) {
- Qprintf(f, "<%s></%s>\n", block, block);
- ++colno;
- }
- Qstring("</tr>\n", f);
- return colno;
- }
- static int
- printtable(Paragraph *pp, MMIOT *f)
- {
- /* header, dashes, then lines of content */
- Line *hdr, *dash, *body;
- Istring align;
- int hcols,start, with_border = 0;
- char *p;
- enum e_alignments it;
- hdr = pp->text;
- dash= hdr->next;
- body= dash->next;
- if ( T(hdr->text)[hdr->dle] == '|' ) {
- /* trim leading pipe off all lines
- */
- Line *r;
- for ( r = pp->text; r; r = r->next )
- r->dle ++;
- }
- /*Check if we want a border on the table*/
- for(p=T(dash->text); *p; ++p){
- if(*p == '='){
- with_border = 1;
- break;
- }
- }
- /* figure out cell alignments */
- CREATE(align);
- for (p=T(dash->text), start=dash->dle; start < S(dash->text); ) {
- char first, last;
- int end;
- last=first=0;
- for (end=start ; (end < S(dash->text)) && p[end] != '|'; ++ end ) {
- if ( p[end] == '\\' )
- ++ end;
- else if ( !isspace(p[end]) ) {
- if ( !first) first = p[end];
- last = p[end];
- }
- }
- it = ( first == ':' ) ? (( last == ':') ? a_CENTER : a_LEFT)
- : (( last == ':') ? a_RIGHT : a_NONE );
- EXPAND(align) = it;
- start = 1+end;
- }
- if(with_border) Qstring("<table border='1' bordercolor='#cccccc'>\n", f);
- else Qstring("<table>\n", f);
- Qstring("<thead>\n", f);
- hcols = splat(hdr, "th", align, 0, f);
- Qstring("</thead>\n", f);
- if ( hcols < S(align) )
- S(align) = hcols;
- else
- while ( hcols > S(align) )
- EXPAND(align) = a_NONE;
- Qstring("<tbody>\n", f);
- for ( ; body; body = body->next)
- splat(body, "td", align, 1, f);
- Qstring("</tbody>\n", f);
- Qstring("</table>\n", f);
- DELETE(align);
- return 1;
- }
- static int
- printblock(Paragraph *pp, MMIOT *f)
- {
- Line *t = pp->text;
- static char *Begin[] = { "", "<p>", "<p style=\"text-align:center;\">" };
- static char *End[] = { "", "</p>","</p>" };
- while (t) {
- if ( S(t->text) ) {
- if ( t->next && S(t->text) > 2
- && T(t->text)[S(t->text)-2] == ' '
- && T(t->text)[S(t->text)-1] == ' ' ) {
- push(T(t->text), S(t->text)-2, f);
- pushc(MKD_EOLN, f);
- pushc('\n', f);
- }
- else {
- ___mkd_tidy(&t->text);
- push(T(t->text), S(t->text), f);
- if ( t->next )
- pushc('\n', f);
- }
- }
- t = t->next;
- }
- Qstring(Begin[pp->align], f);
- text(f);
- Qstring(End[pp->align], f);
- return 1;
- }
- static void
- printcode(Line *t, char *lang, MMIOT *f)
- {
- int blanks;
- Qstring("<pre><code", f);
- if (lang) {
- Qstring(" class=\"", f);
- Qstring(lang, f);
- Qstring("\"", f);
- }
- Qstring(">", f);
- for ( blanks = 0; t ; t = t->next ) {
- if ( S(t->text) > t->dle ) {
- while ( blanks ) {
- Qchar('\n', f);
- --blanks;
- }
- code(f, T(t->text), S(t->text));
- Qchar('\n', f);
- }
- else blanks++;
- }
- Qstring("</code></pre>", f);
- }
- static void
- printhtml(Line *t, MMIOT *f)
- {
- int blanks;
- for ( blanks=0; t ; t = t->next )
- if ( S(t->text) ) {
- for ( ; blanks; --blanks )
- Qchar('\n', f);
- Qwrite(T(t->text), S(t->text), f);
- Qchar('\n', f);
- }
- else
- blanks++;
- }
- static void
- htmlify(Paragraph *p, char *block, char *arguments, MMIOT *f)
- {
- ___mkd_emblock(f);
- if ( block )
- Qprintf(f, arguments ? "<%s %s>" : "<%s>", block, arguments);
- ___mkd_emblock(f);
- while (( p = display(p, f) )) {
- ___mkd_emblock(f);
- Qstring("\n\n", f);
- }
- if ( block )
- Qprintf(f, "</%s>", block);
- ___mkd_emblock(f);
- }
- static void
- definitionlist(Paragraph *p, MMIOT *f)
- {
- Line *tag;
- if ( p ) {
- Qstring("<dl>\n", f);
- for ( ; p ; p = p->next) {
- for ( tag = p->text; tag; tag = tag->next ) {
- Qstring("<dt>", f);
- ___mkd_reparse(T(tag->text), S(tag->text), 0, f, 0);
- Qstring("</dt>\n", f);
- }
- htmlify(p->down, "dd", p->ident, f);
- Qchar('\n', f);
- }
- Qstring("</dl>", f);
- }
- }
- static void
- listdisplay(int typ, Paragraph *p, MMIOT* f)
- {
- if ( p ) {
- Qprintf(f, "<%cl", (typ==UL)?'u':'o');
- if ( typ == AL )
- Qprintf(f, " type=\"a\"");
- Qprintf(f, ">\n");
- for ( ; p ; p = p->next ) {
- htmlify(p->down, "li", p->ident, f);
- Qchar('\n', f);
- }
- Qprintf(f, "</%cl>\n", (typ==UL)?'u':'o');
- }
- }
- /* dump out a Paragraph in the desired manner
- */
- static Paragraph*
- display(Paragraph *p, MMIOT *f)
- {
- if ( !p ) return 0;
- switch ( p->typ ) {
- case STYLE:
- case WHITESPACE:
- break;
- case HTML:
- printhtml(p->text, f);
- break;
- case CODE:
- printcode(p->text, p->lang, f);
- break;
- case QUOTE:
- htmlify(p->down, p->ident ? "div" : "blockquote", p->ident, f);
- break;
- case UL:
- case OL:
- case AL:
- listdisplay(p->typ, p->down, f);
- break;
- case DL:
- definitionlist(p->down, f);
- break;
- case HR:
- Qstring("<hr />", f);
- break;
- case HDR:
- printheader(p, f);
- break;
- case TABLE:
- printtable(p, f);
- break;
- case SOURCE:
- htmlify(p->down, 0, 0, f);
- break;
- default:
- printblock(p, f);
- break;
- }
- return p->next;
- }
- /* dump out a list of footnotes
- */
- static void
- mkd_extra_footnotes(MMIOT *m)
- {
- int j, i;
- Footnote *t;
- if ( m->footnotes->reference == 0 )
- return;
- Csprintf(&m->out, "\n<div class=\"footnotes\">\n<hr/>\n<ol>\n");
-
- for ( i=1; i <= m->footnotes->reference; i++ ) {
- for ( j=0; j < S(m->footnotes->note); j++ ) {
- t = &T(m->footnotes->note)[j];
- if ( (t->refnumber == i) && (t->flags & REFERENCED) ) {
- Csprintf(&m->out, "<li id=\"%s:%d\">\n<p>",
- p_or_nothing(m), t->refnumber);
- Csreparse(&m->out, T(t->title), S(t->title), 0);
- Csprintf(&m->out, "<a href=\"#%sref:%d\" rev=\"footnote\">↩</a>",
- p_or_nothing(m), t->refnumber);
- Csprintf(&m->out, "</p></li>\n");
- }
- }
- }
- Csprintf(&m->out, "</ol>\n</div>\n");
- }
- /* return a pointer to the compiled markdown
- * document.
- */
- int
- mkd_document(Document *p, char **res)
- {
- int size;
- if ( p && p->compiled ) {
- if ( ! p->html ) {
- htmlify(p->code, 0, 0, p->ctx);
- if ( p->ctx->flags & MKD_EXTRA_FOOTNOTE )
- mkd_extra_footnotes(p->ctx);
- p->html = 1;
- size = S(p->ctx->out);
-
- if ( (size == 0) || T(p->ctx->out)[size-1] ) {
- /* Add a null byte at the end of the generated html,
- * but pretend it doesn't exist.
- */
- EXPAND(p->ctx->out) = 0;
- --S(p->ctx->out);
- }
- }
-
- *res = T(p->ctx->out);
- return S(p->ctx->out);
- }
- return EOF;
- }
|