From aab74d3ef27239a7a4f3c9e48c0c9271c6626072 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christopher=20Ram=C3=ADrez?= Date: Thu, 12 Sep 2013 17:23:08 -0600 Subject: [PATCH] Implementing
 tag.  tag is still buggy.

---
 markdown_map.py | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/markdown_map.py b/markdown_map.py
index a8c4a04..92add26 100644
--- a/markdown_map.py
+++ b/markdown_map.py
@@ -83,4 +83,17 @@ transform_map = {
         }
     },
     
+    'pre': {
+        'replace_with': 'text:p',
+        'attributes': {
+            'style-name': 'Preformatted_20_Text'
+        }
+    },
+
+    'code': {
+        'replace_with': 'text:span',
+        'attributes': {
+            'style-name': 'Preformatted_20_Text'
+        }
+    },
 }
\ No newline at end of file