diff options
| author | Philipp Gesang <pgesang@ix.urz.uni-heidelberg.de> | 2011-05-08 18:00:44 +0200 | 
|---|---|---|
| committer | Philipp Gesang <pgesang@ix.urz.uni-heidelberg.de> | 2011-05-08 18:00:44 +0200 | 
| commit | 6a9d7946e1b8d3154526e581fa5309f2f668e64d (patch) | |
| tree | 57c4136a22350a57b4a40004e923a8c5d9bafdcd /mod/tex/context/third/rst | |
| parent | 31fccbd58d3f91979d1f44e83fc2d109b403928a (diff) | |
| download | context-rst-6a9d7946e1b8d3154526e581fa5309f2f668e64d.tar.gz | |
file info cleanup
Diffstat (limited to 'mod/tex/context/third/rst')
| -rw-r--r-- | mod/tex/context/third/rst/rst_context.lua | 1 | ||||
| -rw-r--r-- | mod/tex/context/third/rst/rst_directives.lua | 3 | ||||
| -rw-r--r-- | mod/tex/context/third/rst/rst_helpers.lua | 8 | ||||
| -rw-r--r-- | mod/tex/context/third/rst/rst_parser.lua | 4 | ||||
| -rw-r--r-- | mod/tex/context/third/rst/rst_setups.lua | 4 | 
5 files changed, 8 insertions, 12 deletions
| diff --git a/mod/tex/context/third/rst/rst_context.lua b/mod/tex/context/third/rst/rst_context.lua index d2fb002..86f4177 100644 --- a/mod/tex/context/third/rst/rst_context.lua +++ b/mod/tex/context/third/rst/rst_context.lua @@ -2,6 +2,7 @@  --------------------------------------------------------------------------------  --         FILE:  rst_context.lua  --        USAGE:  called by rst_parser.lua +--  DESCRIPTION:  Complement to the reStructuredText parser  --       AUTHOR:  Philipp Gesang (Phg), <megas.kapaneus@gmail.com>  --      CREATED:  2011-05-04 17:42:04+0200  -------------------------------------------------------------------------------- diff --git a/mod/tex/context/third/rst/rst_directives.lua b/mod/tex/context/third/rst/rst_directives.lua index bb1534a..a8a5eb7 100644 --- a/mod/tex/context/third/rst/rst_directives.lua +++ b/mod/tex/context/third/rst/rst_directives.lua @@ -2,8 +2,9 @@  --------------------------------------------------------------------------------  --         FILE:  rst_directives.lua  --        USAGE:  called by rst_parser.lua +--  DESCRIPTION:  Complement to the reStructuredText parser  --       AUTHOR:  Philipp Gesang (Phg), <megas.kapaneus@gmail.com> ---      CREATED:  2011-05-04 17:43:02+0200 +--      CHANGED:  2011-05-08 17:56:25+0200  --------------------------------------------------------------------------------  -- diff --git a/mod/tex/context/third/rst/rst_helpers.lua b/mod/tex/context/third/rst/rst_helpers.lua index eefc056..73420d0 100644 --- a/mod/tex/context/third/rst/rst_helpers.lua +++ b/mod/tex/context/third/rst/rst_helpers.lua @@ -4,7 +4,7 @@  --        USAGE:  called by rst_parser.lua  --  DESCRIPTION:  Complement to the reStructuredText parser  --       AUTHOR:  Philipp Gesang (Phg), <megas.kapaneus@gmail.com> ---      CREATED:  2011-05-04 17:41:59+0200 +--      CHANGED:  2011-05-08 17:56:07+0200  --------------------------------------------------------------------------------  -- @@ -16,11 +16,6 @@ local C, Carg, Cb, Cc, Cg, Cmt, Cp, Cs, Ct      = lpeg.C, lpeg.Carg, lpeg.Cb, lpeg.Cc, lpeg.Cg, lpeg.Cmt, lpeg.Cp, lpeg.Cs, lpeg.Ct  local helpers ---if not context then -    --helpers       = helpers or {} ---else -    --helpers       = thirddata.rst_helpers ---end  helpers       = thirddata.rst_helpers  helpers.table = {}  helpers.cell  = {} @@ -371,7 +366,6 @@ function helpers.table.simple(raw)                  local cell = {                      content = "",                      span   = { x = 1, y = 1 }, -                    --ignore  = false                  }                  cell.content = string.strip(row:sub(start, stop))                  if check_span then diff --git a/mod/tex/context/third/rst/rst_parser.lua b/mod/tex/context/third/rst/rst_parser.lua index ce3535d..6aeeb7d 100644 --- a/mod/tex/context/third/rst/rst_parser.lua +++ b/mod/tex/context/third/rst/rst_parser.lua @@ -1,11 +1,11 @@  #!/usr/bin/env texlua  -------------------------------------------------------------------------------- ---         FILE:  rst-parser.lua +--         FILE:  rst_parser.lua  --        USAGE:  refer to doc/documentation.rst  --  DESCRIPTION:  https://bitbucket.org/phg/context-rst/overview  --       AUTHOR:  Philipp Gesang (Phg), <megas.kapaneus@gmail.com>  --      VERSION:  0.3 ---      CREATED:  2011-05-04 17:41:15+0200 +--      CHANGED:  2011-05-08 17:55:54+0200  --------------------------------------------------------------------------------  -- diff --git a/mod/tex/context/third/rst/rst_setups.lua b/mod/tex/context/third/rst/rst_setups.lua index 102652b..b7bda95 100644 --- a/mod/tex/context/third/rst/rst_setups.lua +++ b/mod/tex/context/third/rst/rst_setups.lua @@ -2,9 +2,9 @@  --------------------------------------------------------------------------------  --         FILE:  rst_setups.lua  --        USAGE:  called by rst_parser.lua ---  DESCRIPTION:  Setups for rstcontext +--  DESCRIPTION:  Complement to the reStructuredText parser  --       AUTHOR:  Philipp Gesang (Phg), <megas.kapaneus@gmail.com> ---      CREATED:  2011-05-04 17:42:55+0200 +--      CHANGED:  2011-05-08 17:55:37+0200  --------------------------------------------------------------------------------  -- | 
