Changes between Version 1 and Version 2 of MarkdownMacro


Ignore:
Timestamp:
Dec 31, 2008, 2:05:50 AM (15 years ago)
Author:
Douglas Clifton
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MarkdownMacro

    v1 v2  
    1 = WikiProcessor implementation of Markdown =
     1= Markdown [WikiProcessors WikiProcessor] Implementation =
    22
    33== Description ==
    44
    5 The !MarkdownMacro package implements John Gruber's [http://daringfireball.net/projects/markdown/ Markdown] lightweight markup syntax as a Trac [WikiProcessors WikiProcessor] macro.
     5The !MarkdownMacro package implements John Gruber's [http://daringfireball.net/projects/markdown/ Markdown]
     6lightweight plain text-to-HTML formatting syntax as a Trac [WikiProcessors WikiProcessor] macro.
    67
    7 == Bugs/Feature Requests ==
     8== Installation ==
    89
    9 Existing bugs and feature requests for MarkdownMacro are
    10 [report:9?COMPONENT=MarkdownMacro here].
     10First you need to install [http://www.freewisdom.org/projects/python-markdown/ Python Markdown].
     11Follow the instructions on the Web site.
    1112
    12 If you have any issues, create a
    13 [http://trac-hacks.org/newticket?component=MarkdownMacro&owner=dwclifton new ticket].
     13Then download the attached [download:markdownmacro zipfile], unpack it to a temporary location,
     14visit the `0.11` directory and run:
    1415
    15 == Download ==
     16{{{
     17python setup.py bdist_egg
     18cp dist/*.egg /trac/env/Project/plugins
     19}}}
    1620
    17 Download the zipped source from [download:markdownmacro here].
     21== Configuration ==
    1822
    19 == Source ==
     23Enable the macro in:
    2024
    21 You can check out MarkdownMacro from [http://trac-hacks.org/svn/markdownmacro here] using Subversion, or [source:markdownmacro browse the source] with Trac.
     25/trac/env/Project/conf/trac.ini:
     26
     27{{{
     28[components]
     29Markdown.* = enabled
     30}}}
     31
     32You may have to restart your Web server.
    2233
    2334== Example ==
     
    3950    from trac.wiki.formatter import Formatter
    4051
    41 An example [link](http://example.com/ "With a Title").
     52An example [link](http://example.com/ "With a Title").
    4253}}}
    4354}}}
     55
     56== Source ==
     57
     58 * Browse the source at: [http://github.com/dwclifton/tracmarkdownmacro/tree/master GitHub].
     59 * Public clone URL:
     60{{{
     61git clone git://github.com/dwclifton/tracmarkdownmacro.git
     62}}}
     63
     64== See Also ==
     65
     66 * John Gruber's [http://daringfireball.net/projects/markdown/ Markdown]
     67 * [http://www.freewisdom.org/projects/python-markdown/ Python Markdown]
     68 * [http://trac-hacks.org/attachment/ticket/353/Markdown.py Markdown.py] by Alex Mizrahi aka killer_storm
     69 * [http://daringfireball.net/projects/markdown/syntax Markdown syntax]
     70
     71== Bugs/Feature Requests ==
     72
     73Existing bugs and feature requests for MarkdownMacro are
     74[report:9?COMPONENT=MarkdownMacro here].
     75
     76If you have any issues, create a
     77[http://trac-hacks.org/newticket?component=MarkdownMacro&owner=dwclifton new ticket].
    4478
    4579== Recent Changes ==
     
    4983== Author/Contributors ==
    5084
    51 '''Author:''' [wiki:dwclifton] [[BR]]
    52 '''Contributors:'''
     85 * '''Author:''' [wiki:dwclifton] (Macro/Processor package, setup, documentation)
     86 * '''Contributors:'''
     87  * [http://daringfireball.net/colophon/ John Gruber]
     88  * [http://www.freewisdom.org/projects/python-markdown/Credits Yuri Takhteyev, et al.]
     89  * Alex Mizrahi alias [http://trac-hacks.org/attachment/ticket/353/Markdown.py killer_storm]
     90  * The Trac and Python development community