summaryrefslogtreecommitdiff
path: root/FAQ.txt
diff options
context:
space:
mode:
authormilde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2012-10-16 12:40:36 +0000
committermilde <milde@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2012-10-16 12:40:36 +0000
commit271fd7c07130ab7902be7a46a7a2e1ba9142278e (patch)
treed55fed6dc1d647140dca4fd3d132921c704af920 /FAQ.txt
parent765b890eea4a503784c78b592cb010e35fff36c1 (diff)
downloaddocutils-271fd7c07130ab7902be7a46a7a2e1ba9142278e.tar.gz
Add SmartQuotes transform for typographic quotes and dashes.
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7530 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'FAQ.txt')
-rw-r--r--FAQ.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/FAQ.txt b/FAQ.txt
index 48f24cd4e..29a17af06 100644
--- a/FAQ.txt
+++ b/FAQ.txt
@@ -1223,3 +1223,25 @@ the reStructuredText markup.
sentence-end-double-space: t
fill-column: 70
End:
+
+.. Here's a code css to make a table colourful::
+
+ /* Table: */
+
+ th {
+ background-color: #ede;
+ }
+
+ /* alternating colors in table rows */
+ table.docutils tr:nth-child(even) {
+ background-color: #F3F3FF;
+ }
+ table.docutils tr:nth-child(odd) {
+ background-color: #FFFFEE;
+ }
+
+ table.docutils tr {
+ border-style: solid none solid none;
+ border-width: 1px 0 1px 0;
+ border-color: #AAAAAA;
+ }