does anybody know where it is possible to find the file, where the action ziphtml is found...
I am trying to follow the code to see what happens when the funktion ziphtml is called (started in PhpWikiAdmin ->?action=ziphtml called)
The second question I have is if somebody knows where the parsing function is, where the wiki code is translated into html...
Thank
Alvaro
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I would like to try if I can change the wiki tags...
for example instad of using ! for headings to use another symbol...
I found meanwhile out that some tags (*,=,_) are defined in InlineParser.php
but all the other tags, as for example %%% or ---- or > or ! I didn't found them...
Where could i look to change these wiki-tags?
Thank you
Alvaro
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
does anybody know where it is possible to find the file, where the action ziphtml is found...
I am trying to follow the code to see what happens when the funktion ziphtml is called (started in PhpWikiAdmin ->?action=ziphtml called)
The second question I have is if somebody knows where the parsing function is, where the wiki code is translated into html...
Thank
Alvaro
1. loadsave.php
2. InlineParser and BlockParser
another question:
I would like to try if I can change the wiki tags...
for example instad of using ! for headings to use another symbol...
I found meanwhile out that some tags (*,=,_) are defined in InlineParser.php
but all the other tags, as for example %%% or ---- or > or ! I didn't found them...
Where could i look to change these wiki-tags?
Thank you
Alvaro
The tags for one line are in InlineParser.php,
the tags on the block level are in BlockParser.php
Both are no real parsers, just global regex exchangers.