Changes between Version 3 and Version 4 of InlineMacro


Ignore:
Timestamp:
Dec 30, 2008, 3:26:02 PM (15 years ago)
Author:
Douglas Clifton
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InlineMacro

    v3 v4  
    2525embedded directly in another construct, typically a paragraph of text.
    2626
     27
     28
     29== Installation ==
     30
     31Download the attached [download:inlinemacro zipfile], unpack to a temporary location, visit the `0.11`
     32directory and run:
     33
     34{{{
     35python setup.py bdist_egg
     36cp dist/*.egg /trac/env/Project/plugins
     37}}}
     38
     39== Configuration ==
     40
     41Enable the macro in:
     42
     43/trac/env/Project/conf/trac.ini:
     44
     45{{{
     46[components]
     47inline.* = enabled
     48}}}
     49
     50You may have to restart your Web server.
     51
     52== Examples ==
     53
     54{{{
     55...is now a [[Inline(<acronym title="Python Enhancement Proposal">PEP</acronym>)]].
     56Visit [[Inline(<a href="..." title="My Link">my link</a>)]].
     57}}}
     58
     59== Source ==
     60
     61 * Browse the source at: [http://github.com/dwclifton/tracinlinemacro/tree/master GitHub].
     62 * Public clone URL:
     63{{{
     64git clone git://github.com/dwclifton/tracinlinemacro.git
     65}}}
     66
    2767== Bugs/Feature Requests ==
    2868
     
    3272If you have any issues, create a
    3373[http://trac-hacks.org/newticket?component=InlineMacro&owner=dwclifton new ticket].
    34 
    35 == Download ==
    36 
    37 Download the zipped source from [download:inlinemacro here].
    38 
    39 == Source ==
    40 
    41 You can check out InlineMacro from [http://trac-hacks.org/svn/inlinemacro here] using Subversion, or [source:inlinemacro browse the source] with Trac.
    42 
    43 == Example ==
    44 
    45 {{{
    46 ...is now a [[Inline(&lt;acronym title=&#34;Python Enhancement Proposal&#34;&gt;PEP&lt;/acronym&gt;)]].
    47 Visit [[Inline(&lt;a href=&#34;...&#34; title=&#34;My Link&#34;&gt;my link&lt;/a&gt;)]].
    48 }}}
    4974
    5075== Recent Changes ==