From 71eb5ab8fa695cb6ec7c57185703b983909d695f Mon Sep 17 00:00:00 2001 From: John Schember Date: Sun, 17 May 2009 21:38:35 -0400 Subject: [PATCH] Fix chapter pml tag. --- src/calibre/ebooks/pml/pmlml.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/calibre/ebooks/pml/pmlml.py b/src/calibre/ebooks/pml/pmlml.py index a6febdc53f..7c10784867 100644 --- a/src/calibre/ebooks/pml/pmlml.py +++ b/src/calibre/ebooks/pml/pmlml.py @@ -24,11 +24,11 @@ TAG_MAP = { 'big' : 'l', 'del' : 'o', 'h1' : 'x', - 'h2' : 'x0', + 'h2' : 'X0', 'h3' : 'x1', - 'h4' : 'x2', - 'h5' : 'x3', - 'h6' : 'x4', + 'h4' : 'X2', + 'h5' : 'X3', + 'h6' : 'X4', '!--' : 'v', }