From e2208e66effcc50e5cd63d0debfc65560d9003af Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Fri, 3 Sep 2010 01:52:23 +0200 Subject: nested unordered lists --- rst_context.lua | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'rst_context.lua') 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 -- cgit v1.2.3