Displaying 3 results from an estimated 3 matches for "wikilinks".
2009 Apr 07
1
Python-Markdown 2.0 Final Released!
I am happy to announce the release of Python-Markdown 2.0 final. We
have versions for Python 2.3-2.6 and Python 3.0!
See the release notes here:
https://sourceforge.net/project/shownotes.php?release_id=674043&group_id=153041
Download from PyPI here:
http://pypi.python.org/pypi/Markdown/2.0
--
----
\X/ /-\ `/ |_ /-\ |\|
Waylan Limberg
2007 May 18
1
Informl 0.4 (wiki with forms, DB, and more)
...mally expect from a wiki, by providing a framework in
which anyone can quickly create and deploy simple database-backed web
applications. Everything you need is at http://informl.folklogic.net.
Quick overview:
* General wiki features
* uses markdown for text markup
* additions to markdown for wikilinks, tables, page inclusion
* live preview
* spam protection via captcha or registration & login
* Form elements
* radio buttons
* dropdown selectors (combo boxes)
* check boxes
* buttons
* text fields and text areas
* RSS feeds for page content and form submissions
* Database
* dat...
2008 Feb 13
3
Syntax for extensions
Hello,
I need to to slightly extend the markdown syntax. (place an image (img tag)
in text which URL has not yet been determined). Therefore I want to define
something like $[Alt text](img.jpg) which would be replaced by my
pre-processor with ![Alt text](/path/to/img.jpg) and then sent to markdown.
Is there any special syntax that should be used for such 3rd party extensions?
How would you do