summaryrefslogtreecommitdiff
path: root/docutils/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
commite33883f8b3201d785d681721b0aa0520b8f5f5ff (patch)
tree740afb667e21f0fc4f0b669be90b763a31fa2ac2 /docutils/FAQ.txt
parentdae42c2b697f853f045f0f3c74c2b3798d6eaad2 (diff)
downloaddocutils-e33883f8b3201d785d681721b0aa0520b8f5f5ff.tar.gz
Add SmartQuotes transform for typographic quotes and dashes.
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk@7530 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/FAQ.txt')
-rw-r--r--docutils/FAQ.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/docutils/FAQ.txt b/docutils/FAQ.txt
index 48f24cd4e..29a17af06 100644
--- a/docutils/FAQ.txt
+++ b/docutils/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;
+ }