Files
eepp/docs/doxyrest/frame/common/crefdb_items.py.in
Martín Lucas Golini bec45f8b4b Added doxyrest support.
Cleaned up several documentation related stuffs.

--HG--
branch : dev
2020-01-03 03:42:14 -03:00

24 lines
649 B
Python

%{
--------------------------------------------------------------------------------
--
-- This file is part of the Doxyrest toolkit.
--
-- Doxyrest is distributed under the MIT license.
-- For details see accompanying license.txt file,
-- the public copy of which is also available at:
-- http://tibbo.com/downloads/archive/doxyrest/license.txt
--
--------------------------------------------------------------------------------
local argArray = table.pack(...)
local itemArray = argArray[1]
local namePrefix = argArray[2]
for i = 1, #itemArray do
local item = itemArray[i]
}
'$namePrefix$(item.name)' : 'doxid-$(item.id)',
%{
end -- for
}