diff options
| author | Philipp Gesang <gesang@stud.uni-heidelberg.de> | 2013-03-12 20:33:21 +0100 | 
|---|---|---|
| committer | Philipp Gesang <gesang@stud.uni-heidelberg.de> | 2013-03-12 20:33:21 +0100 | 
| commit | c3e138a3d2f616e402f39b47078c604bece1078e (patch) | |
| tree | 4309705dcc999d5ad94f6b75fdb80945fb43abfc /mod/tex/context/third | |
| parent | 49ebbc9a0de8e4b686039980595a82453dba5417 (diff) | |
| download | context-rst-c3e138a3d2f616e402f39b47078c604bece1078e.tar.gz | |
have containers default to \framed
Diffstat (limited to 'mod/tex/context/third')
| -rw-r--r-- | mod/tex/context/third/rst/rst_directives.lua | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/mod/tex/context/third/rst/rst_directives.lua b/mod/tex/context/third/rst/rst_directives.lua index 8e301b1..085d167 100644 --- a/mod/tex/context/third/rst/rst_directives.lua +++ b/mod/tex/context/third/rst/rst_directives.lua @@ -304,6 +304,9 @@ end  rst_directives.container = function(data)      local inline_parser = rst_context.inline_parser      local name, content = stringstrip(data[1]), "" +    if name == "" then +        name = "\\framed" +    end      local tmp = { }      for i=2, #data do          tmp[#tmp+1] = data[i]  | 
