From 3cd2b24fc5955adab25e9be3cb985860c7a5a78a Mon Sep 17 00:00:00 2001 From: Eric Holscher Date: Tue, 2 Jul 2013 22:54:32 -0700 Subject: [PATCH] Add a link to a blog post explaining docutils Writers/Translators --- sphinx/writers/html.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sphinx/writers/html.py b/sphinx/writers/html.py index d450b2c74..ba26628d8 100644 --- a/sphinx/writers/html.py +++ b/sphinx/writers/html.py @@ -28,6 +28,8 @@ except ImportError: except ImportError: Image = None +# A good overview of the purpose behind these classes can be found here: +# http://www.arnebrodowski.de/blog/write-your-own-restructuredtext-writer.html class HTMLWriter(Writer): def __init__(self, builder):