Differences From:
File
src/wikiformat.c
part of check-in
[b2e55c0d4d]
- Add the /wiki and /bwiki web pages. Currently renders content from
the check-out as readonly.
by
drh on
2007-09-01 21:11:33.
[view]
To:
File
src/wikiformat.c
part of check-in
[11976cfdc2]
- Add the "index.wiki" wiki page. Fix a bug in the wiki rendering engine.
The page displays now, but not correctly - there are clearly additional
bugs to be found and fixed.
by
drh on
2007-09-02 02:01:35.
Also file
src/wikiformat.c
part of check-in
[bbcb6326c9]
- Pulled in the navbar and timeline changes.
by
aku on
2007-09-17 00:58:51.
[view]
@@ -320,8 +320,9 @@
while( z[n] && (z[n]!='>' || inparen) ){
if( z[n]=='"' ){
inparen = !inparen;
}
+ n++;
}
if( z[n]!='>' ) return 0;
return n+1;
}