Added docutils SQL role.

This commit is contained in:
Daniele Varrazzo 2010-02-10 22:39:41 +00:00 committed by Federico Di Gregorio
parent 5491dd8db0
commit 6ea6d48f5d
2 changed files with 31 additions and 0 deletions

View File

@ -9,3 +9,13 @@ div.dbapi-extension {
background-color: #f5ffd4;
border: 1px solid #bda;
}
tt.sql {
font-size: 1em;
background-color: #fff;
}
a > tt.sql:hover {
text-decoration: underline;
}

21
doc/sql_role.py Normal file
View File

@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
"""
sql role
~~~~~~~~
An interpreted text role to style SQL syntax in Psycopg documentation.
:copyright: Copyright 2010 by Daniele Varrazzo.
"""
from docutils import nodes, utils
from docutils.parsers.rst import roles
def sql_role(name, rawtext, text, lineno, inliner, options={}, content=[]):
text = utils.unescape(text)
options['classes'] = ['sql']
return [nodes.literal(rawtext, text, **options)], []
def setup(app):
roles.register_local_role('sql', sql_role)