summaryrefslogtreecommitdiff
path: root/rst_context.lua
diff options
context:
space:
mode:
Diffstat (limited to 'rst_context.lua')
-rw-r--r--rst_context.lua16
1 files changed, 16 insertions, 0 deletions
diff --git a/rst_context.lua b/rst_context.lua
index 6363dfe..8b4c8d6 100644
--- a/rst_context.lua
+++ b/rst_context.lua
@@ -195,6 +195,22 @@ function rst_context.transition (str)
return "\n\\hrule\n"
end
+function rst_context.bullet_list (str)
+ return [[
+\\startitemize
+]] .. str .. [[
+
+\\stopitemize
+]]
+end
+
+function rst_context.bullet_item (str)
+ return [[
+
+\\item ]] .. str .. [[
+
+]]
+end
return rst_context