From 6f0bdcdebc3e74ad0e8694d4f7d0888f7eb7a404 Mon Sep 17 00:00:00 2001 From: simon Date: Mon, 24 Jan 2005 13:35:34 +0000 Subject: [PATCH] Shouldn't consider para_Title to be a heading when going through sections looking for local configuration data. git-svn-id: svn://svn.tartarus.org/sgt/halibut@5196 cda61777-01e9-0310-a592-d414129be87e --- bk_html.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bk_html.c b/bk_html.c index 96a8982..5babfda 100644 --- a/bk_html.c +++ b/bk_html.c @@ -834,7 +834,8 @@ void html_backend(paragraph *sourceform, keywordlist *keywords, for (s = sects.head; s; s = s->next) { if (s->file == f && s->text) { for (p = s->text; - p && (p == s->text || !is_heading_type(p->type)); + p && (p == s->text || p->type == para_Title || + !is_heading_type(p->type)); p = p->next) { if (p->type == para_Config) { if (!ustricmp(p->keyword, L"html-local-head")) { -- 2.11.0