]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - doc/tips/Right-to-left___40__RTL__41___page_text.mdwn
Answering questions and updating links
[git.ikiwiki.info.git] / doc / tips / Right-to-left___40__RTL__41___page_text.mdwn
index 2b176c811f05b9b451f218bf842cde6a439988b0..5b8cd1474f42f5cb82a955eb5b8fcf7d58823a91 100644 (file)
@@ -1,3 +1,5 @@
+[[!meta date="2014-07-11 08:25:31 -0400"]]
+
 Here's a simple way to create pages in which the page body (or a part of it) goes right-to-left.
 This includes things you insert into the page, such as polls and blockquotes and
 lists and a progress bar and so on. Some things don't work perfectly, but if
@@ -10,7 +12,7 @@ footer. Only what is rendered from the mdwn file is affected.
 
 Create a new template page *templates/rtl.mdwn* with the following content:
 
-    <div class="rtl">
+    <div dir="rtl">
     <TMPL_VAR text>
     </div>
     <TMPL_UNLESS text>
@@ -21,18 +23,7 @@ Create a new template page *templates/rtl.mdwn* with the following content:
     </ul>
     </TMPL_UNLESS>
 
-# 2 Add an RTL class to the CSS
-
-In your *local.css* add the following:
-
-[[!format css """
-/* rtl template */
-.rtl {
-    direction: rtl;
-}
-"""]]
-
-# 3 Use the Template
+# 2 Use the Template
 
 To make a page or part of it RTL, use the [[ikiwiki/directive/template]] directive: