Merge branch 'master' of github.com:stevedonovan/LDoc
This commit is contained in:
commit
5beb1f048a
|
@ -4,4 +4,4 @@ description='A Lua documentation tool'
|
|||
format='discount'
|
||||
file='ldoc.lua'
|
||||
dir='out'
|
||||
readme='docs/doc.md'
|
||||
readme='doc/doc.md'
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
project='LDoc'
|
||||
title='LDoc documentation'
|
||||
description='A Lua documentation tool'
|
||||
format='discount'
|
||||
file='../ldoc.lua'
|
||||
dir='../out'
|
||||
readme='doc.md'
|
3
ldoc.lua
3
ldoc.lua
|
@ -35,7 +35,7 @@ app.require_here()
|
|||
|
||||
--- @usage
|
||||
local usage = [[
|
||||
ldoc, a documentation generator for Lua, vs 1.3.10
|
||||
ldoc, a documentation generator for Lua, vs 1.3.11
|
||||
-d,--dir (default docs) output directory
|
||||
-o,--output (default 'index') output name
|
||||
-v,--verbose verbose
|
||||
|
@ -301,6 +301,7 @@ end
|
|||
if type(source_dir) == 'string' and path.isfile(source_dir) then
|
||||
source_dir = path.splitpath(source_dir)
|
||||
end
|
||||
source_dir = source_dir:gsub('[/\\]%.$','')
|
||||
|
||||
---------- specifying the package for inferring module names --------
|
||||
-- If you use module(...), or forget to explicitly use @module, then
|
||||
|
|
|
@ -249,7 +249,7 @@ return [==[
|
|||
</div> <!-- id="content" -->
|
||||
</div> <!-- id="main" -->
|
||||
<div id="about">
|
||||
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.3</a></i>
|
||||
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.3.11</a></i>
|
||||
</div> <!-- id="about" -->
|
||||
</div> <!-- id="container" -->
|
||||
</body>
|
||||
|
|
Loading…
Reference in New Issue