|
|
Subject:
OpenWiki
Category: Computers > Programming Asked by: j_philipp-ga List Price: $10.00 |
Posted:
23 Sep 2004 06:56 PDT
Expires: 12 Oct 2004 15:29 PDT Question ID: 405236 |
I want to do two small things in OpenWiki (by editing the ASP source, or a configuration file): * make CamelCase *not* auto-link * make hard breaks be accepted |
|
There is no answer at this time. |
|
Subject:
Re: OpenWiki
From: paul_schleifer-ga on 24 Sep 2004 14:14 PDT |
To make CamelCase not a link, put a tilde (~) in front of the term (see http://www.openwiki.com/ow.asp?HelpOnLinking). For hard breaks, you can either use something like %%% to indicate where you want the break, and then edit the function MyMultiLineMarkupEnd in owbase\ow\my\mywikify.asp to look something like: Function MyMultiLineMarkupEnd(pText) pText = Replace(pText, "%%%", "<br>") MyMultiLineMarkupEnd = pText End Function Or you can try using the same function to replace all line breaks with an html break tag: Function MyMultiLineMarkupEnd(pText) pText = Replace(pText, vbCrLf, "<br>") MyMultiLineMarkupEnd = pText End Function |
Subject:
Re: OpenWiki
From: j_philipp-ga on 29 Sep 2004 06:45 PDT |
Thanks Paul, I think your second comment on hard breaks is very good, and I will try it out. The first comment: yes, but I do not want the user to enter a tilde. |
If you feel that you have found inappropriate content, please let us know by emailing us at answers-support@google.com with the question ID listed above. Thank you. |
Search Google Answers for |
Google Home - Answers FAQ - Terms of Service - Privacy Policy |