Changes between Version 6 and Version 7 of TracAsciidoctorPlugin


Ignore:
Timestamp:
Nov 30, 2015, 5:01:25 PM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • TracAsciidoctorPlugin

    v6 v7  
    55== Description
    66
    7 A plugin for rendering asciidoc source files to HTML when browsing the repository.
     7This is a plugin for rendering !AsciiDoc source files to HTML when browsing the repository.
    88
    99To use this plugin install [http://asciidoctor.org/ Asciidoctor] and enable the plugin as usual.
     
    1717
    1818If you have any issues, create a
    19 [http://trac-hacks.org/newticket?component=TracAsciidoctorPlugin new ticket].
     19[/newticket?component=TracAsciidoctorPlugin new ticket].
    2020
    2121[[TicketQuery(component=TracAsciidoctorPlugin&group=type,format=progress)]]
     
    2727== Source
    2828
    29 You can check out TracAsciidoctorPlugin from [http://trac-hacks.org/svn/tracasciidoctorplugin here] using Subversion, or [source:tracasciidoctorplugin browse the source] with Trac.
     29You can check out TracAsciidoctorPlugin from [/svn/tracasciidoctorplugin here] using Subversion, or [source:tracasciidoctorplugin browse the source] with Trac.
    3030
    3131== Installation
     
    3434
    3535The simplest way to install it is using `easy_install`:
    36 {{{
    37 #!sh
     36{{{#!sh
    3837easy_install http://trac-hacks.org/svn/tracasciidoctorplugin/1.0/
    3938}}}
    4039
    4140This plugin uses asciidoctor so it needs to be installed on your machine. If it is not in the usual place of `/usr/bin/asciidoctor`, you can specify its location in the `trac.ini` file:
    42 {{{
    43 #!ini
     41{{{#!ini
    4442asciidoctor_path = /your_path/asciidoctor
    4543}}}
    4644
    4745You will need to enable it in `trac.ini` under the `[components]` subheading:
    48 {{{
    49 #!ini
     46{{{#!ini
    5047tracasciidoctor.* = enabled
    5148}}}