APIDump: replacing wiki-style markup with APIDump-style markup
This commit is contained in:
parent
f553d8e29e
commit
5b8271517d
@ -357,6 +357,9 @@ function ConvertWikiToDesc()
|
|||||||
local Constants = {};
|
local Constants = {};
|
||||||
local Functions = {};
|
local Functions = {};
|
||||||
for line in fin:lines() do
|
for line in fin:lines() do
|
||||||
|
-- Replace wiki-style markup:
|
||||||
|
line = line:gsub("%[%[.-:.-:(.-)|(.-)%]%]", "{{%1|%2}}"); -- Replaces [[API:Plugin:Hook|LinkText]]
|
||||||
|
line = line:gsub("%[%[.-:(.-)|(.-)%]%]", "{{%1|%2}}"); -- Replaces [[API:Class|LinkText]]
|
||||||
if (line:find("======") ~= nil) then
|
if (line:find("======") ~= nil) then
|
||||||
state = 1; -- The following is the class description
|
state = 1; -- The following is the class description
|
||||||
ClassName = line:gsub("======", "");
|
ClassName = line:gsub("======", "");
|
||||||
|
Loading…
Reference in New Issue
Block a user