From d01a140c03718928e7d4ac33a2ba471d9d6fdb71 Mon Sep 17 00:00:00 2001 From: Matt Wilson Date: Tue, 29 Jan 2002 23:05:13 +0000 Subject: i18n almost works again. Small tweaks left to do --- htmlbuffer.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'htmlbuffer.py') diff --git a/htmlbuffer.py b/htmlbuffer.py index b06f168d6..bf42aabe5 100644 --- a/htmlbuffer.py +++ b/htmlbuffer.py @@ -61,6 +61,10 @@ class HTMLBuffer(HTMLParser.HTMLParser): tag.set_property('font', '%s %d' % (baseFont, baseSize + 4)) tag.set_property('weight', pango.WEIGHT_BOLD) + tag = self.buffer.create_tag('h3') + tag.set_property('font', '%s %d' % (baseFont, baseSize + 4)) + tag.set_property('weight', pango.WEIGHT_BOLD) + tag = self.buffer.create_tag('b') tag.set_property('weight', pango.WEIGHT_BOLD) -- cgit