From 2c5767ab6e1ea37c190be1da007cc015a5d3a7ed Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Thu, 25 Mar 2004 18:32:05 +0000 Subject: Add a \quote{...} directive, working like
in HTML. [originally from svn r3978] --- bk_xhtml.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'bk_xhtml.c') diff --git a/bk_xhtml.c b/bk_xhtml.c index 3024664..449eb4e 100644 --- a/bk_xhtml.c +++ b/bk_xhtml.c @@ -1142,6 +1142,12 @@ static void xhtml_do_paras(FILE *fp, paragraph *p) goto closeofflist; /* ick */ } break; + case para_QuotePush: + fprintf(fp, "
\n"); + break; + case para_QuotePop: + fprintf(fp, "
\n"); + break; case para_Bullet: case para_NumberedList: -- cgit v1.1