X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=phd.py;h=52f69370b61c4e932405eb8c170d2fb402255789;hb=d4a8101f56c22a7b3ac880252ef4caa349d68959;hp=ed53e83ab5d2ef4acaed3fde5b86e6e4d7321b7c;hpb=03f9943609343c4035886209f2e14b6ebdb6afb9;p=phdru.name%2Fphdru.name.git diff --git a/phd.py b/phd.py index ed53e83..52f6937 100644 --- a/phd.py +++ b/phd.py @@ -9,7 +9,7 @@ def _url2href(match): return '%s' % (url, url) -full_dirs = len(os.getcwd().split('/')) + 2 +full_dirs = len(os.getcwd().split('/')) + 1 class phd(Template): def __init__(self, *args, **kw): @@ -44,6 +44,8 @@ class phd(Template): return self.text2html() if hasattr(self, "body_rst"): return self.rst2html() + if hasattr(self, "body_mkd"): + return self.mkd2html() def text2html(self): body = re.sub(url_re, _url2href, self.body_text()) @@ -52,6 +54,8 @@ class phd(Template): new_paras = [] for p in paragraphs: + if isinstance(p, unicode): + p = p.encode('utf-8') parts = p.split("\n ") parts[0] = parts[0].strip() new_paras.append('\n

\n

\n'.join(parts)) @@ -66,22 +70,30 @@ class phd(Template): def rst2html(self): from docutils.core import publish_parts - from m_lib.defenc import default_encoding as encoding parts = publish_parts(self.body_rst(), writer_name="html") - title = parts["title"].encode(encoding) or self.Title + title = parts["title"] or self.Title if title: title = "

%s

" % title - subtitle = parts["subtitle"].encode(encoding) + subtitle = parts["subtitle"] if subtitle: subtitle = "

%s

" % subtitle - body = parts["body"].encode(encoding) - parts = [part for part in (title, subtitle, body) if part] + body = parts["body"] + parts = [] + for part in (title, subtitle, body): + if not part: + continue + if isinstance(part, unicode): + part = part.encode('utf-8') + parts.append(part) return "\n\n".join(parts) + def mkd2html(self): + from markdown import markdown + return markdown(self.body_mkd(), output_format="html") def img_thumbnail_800_1024(self, img_name): return """\