summaryrefslogtreecommitdiff
path: root/rst_context.lua
diff options
context:
space:
mode:
Diffstat (limited to 'rst_context.lua')
-rw-r--r--rst_context.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/rst_context.lua b/rst_context.lua
index 9112786..6ace513 100644
--- a/rst_context.lua
+++ b/rst_context.lua
@@ -477,7 +477,6 @@ function rst_context.paragraph (data)
else
str = data
end
- print(str)
return string.format([[
\\startparagraph
@@ -704,15 +703,16 @@ function rst_context.field (tab)
end
function rst_context.line_comment (str)
+ print(">>"..str.."<<")
return "% " .. str
end
function rst_context.block_comment (str)
+ print(">>"..str.."<<")
return string.format([[
\iffalse
-%s
-\fi
+%s\fi
]], str)
end