*Henner: Just a little patch to notify.php so that you can write the correct example on the GlobalNotify page:

*** notify.php        17 Aug 2004 13:01:53 -0000        1.17
--- notify.php        17 Aug 2004 17:46:33 -0000
***
* 243,249 **


  function ewiki_format_remove_notify(&$source) {
!    ewiki_notify_links($source, 1);
  }


--- 243,252 ----


  function ewiki_format_remove_notify(&$source) {
!    global $ewiki_id;
!    if ($ewiki_id != *EWIKI_NOTIFY_GLOBAL) {
!       ewiki_notify_links($source, 1);
!    }
  }

mario: That's not worth the hassle - if we started with this, we had to make exceptions for every explanaition page out there. For example, we cannot know in advance on which other pages we're going to talk about the [notify: or the <prE>-tag markup. It was helpful to be able to document them correctly in our example pages (WikiMarkup and ExtendedWikiMarkup), but adding workaround code for this doesn't help long-term. I'm more into making a general escape sequence for all WikiMarkup, something like \ or ~ - in the future...

*Henner: I think you are right. And you have such an escape sequence defined with the ~. And if all rendering functions would use this - that would be great...

xrat: Well, for reference, this is also partly discussed in EscapeSquareBrackets.

bottom corner