Browse Source

Change raw to text;

bjorn 9 years ago
parent
commit
697afb1708
1 changed files with 0 additions and 12 deletions
  1. 0 12
      docroc.lua

+ 0 - 12
docroc.lua

@@ -37,12 +37,6 @@ function docroc.process(filename)
 end
 
 docroc.processors = {
-  description = function(body)
-    return {
-      text = body
-    }
-  end,
-
   arg = function(body)
     local name = body:match('^%s*(%w+)') or body:match('^%s*%b{}%s*(%w+)')
     local description = body:match('%-%s*(.*)$')
@@ -75,12 +69,6 @@ docroc.processors = {
       type = type,
       description = description
     }
-  end,
-
-  class = function(body)
-    return {
-      name = body
-    }
   end
 }