From 97aa5f28b096e2439d87a617c17eae52171e80d6 Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Sat, 4 Sep 2010 13:43:48 +0200 Subject: option lists --- rst_context.lua | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'rst_context.lua') diff --git a/rst_context.lua b/rst_context.lua index ff3851d..57725ed 100644 --- a/rst_context.lua +++ b/rst_context.lua @@ -366,4 +366,29 @@ function rst_context.block_comment (str) ]], str) end +function rst_context.option_list (str) + return [[ +\\setupTABLE[c][first] [background=color, backgroundcolor=grey, style=\tt] +\\setupTABLE[c][each] [frame=off] +\\setupTABLE[r][each] [frame=off] +\\bTABLE[split=repeat,option=stretch] +\\bTABLEhead +\\bTR + \\bTH Option \\eTH + \\bTH Description \\eTH +\\eTR +\\eTABLEhead +\\bTABLEbody +]] .. str .. [[ + +\\eTABLEbody +\\eTABLE +]] +end + +function rst_context.option_item (tab) + return string.format([[\\bTR\\bTC %s \\eTC\\bTC %s \\eTC\\eTR +]], tab[1], tab[2]) +end + return rst_context -- cgit v1.2.3