From 7839a791ae6243f3efcdd20cd9e50ba8c599b2b3 Mon Sep 17 00:00:00 2001 From: steve donovan Date: Sun, 10 Jul 2011 19:10:53 +0200 Subject: [PATCH] code reformat 4 to 3 spaces per indent --- ldoc/prettify.lua | 106 ++++++++++++++++++++++++---------------------- 1 file changed, 55 insertions(+), 51 deletions(-) diff --git a/ldoc/prettify.lua b/ldoc/prettify.lua index e4af2ac..9ba733e 100644 --- a/ldoc/prettify.lua +++ b/ldoc/prettify.lua @@ -1,51 +1,55 @@ -require 'pl' -local lexer = require 'ldoc.lexer' -local prettify = {} - -local escaped_chars = { - ['&'] = '&', - ['<'] = '<', - ['>'] = '>', -} -local escape_pat = '[&<>]' - -local function escape(str) - return (str:gsub(escape_pat,escaped_chars)) -end - -local function span(t,val) - return ('%s'):format(t,val) -end - -local function link(file,ref,text) - text = text or ref - return ('%s'):format(file,ref,text) -end - -local spans = {keyword=true,number=true,string=true,comment=true} - -function prettify.lua (file) - local code,err = utils.readfile(file) - if not code then return nil,err end - - local res = List() - res:append(header) - res:append '
\n'
-
-    local tok = lexer.lua(code,{},{})
-    local t,val = tok()
-    while t do
-        val = escape(val)
-        if spans[t] then
-            res:append(span(t,val))
-        else
-            res:append(val)
-        end
-        --print(t,'|'..val..'|')
-        t,val = tok()
-    end
-    res:append(footer)
-    return res:join ()
-end
-
-return prettify
+-- Making Lua source code look pretty.
+-- A simple scanner based prettifier, which scans comments for @{ref} and code
+-- for known modules and functions.
+-- A module reference to an example `test-fun.lua` would look like
+-- `@{example:test-fun}`.
+require 'pl'
+local lexer = require 'ldoc.lexer'
+local prettify = {}
+
+local escaped_chars = {
+   ['&'] = '&',
+   ['<'] = '<',
+   ['>'] = '>',
+}
+local escape_pat = '[&<>]'
+
+local function escape(str)
+   return (str:gsub(escape_pat,escaped_chars))
+end
+
+local function span(t,val)
+   return ('%s'):format(t,val)
+end
+
+local function link(file,ref,text)
+   text = text or ref
+   return ('%s'):format(file,ref,text)
+end
+
+local spans = {keyword=true,number=true,string=true,comment=true}
+
+function prettify.lua (file)
+   local code,err = utils.readfile(file)
+   if not code then return nil,err end
+
+   local res = List()
+   res:append(header)
+   res:append '
\n'
+
+   local tok = lexer.lua(code,{},{})
+   local t,val = tok()
+   while t do
+      val = escape(val)
+      if spans[t] then
+         res:append(span(t,val))
+      else
+         res:append(val)
+      end
+      t,val = tok()
+   end
+   res:append(footer)
+   return res:join ()
+end
+
+return prettify