Changes between Version 1 and Version 2 of WikiProcessors
- Timestamp:
- 24 May 2018, 12:41:09 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified WikiProcessors
v1 v2 6 6 - [#CodeHighlightingSupport syntax highlighting] or for rendering text verbatim 7 7 - rendering [#HTMLrelated Wiki markup inside a context], like inside <div> blocks or <span> or within <td> or <th> table cells 8 - using an alternative markup syntax, like [ wiki:WikiHtml raw HTML] and [wiki:WikiRestructuredText Restructured Text] or [http://www.textism.com/tools/textile/ textile]8 - using an alternative markup syntax, like [WikiHtml raw HTML] and [WikiRestructuredText Restructured Text] or [http://www.textism.com/tools/textile/ textile] 9 9 10 10 == Using Processors … … 142 142 The following processors are included in the Trac distribution: 143 143 144 || '''`#!default`''' || Present the text verbatim in a preformatted text block. This is the same as specifying ''no'' processor name (and no `#!`) ||144 || '''`#!default`''' || Present the text verbatim in a preformatted text block. This is the same as specifying ''no'' processor name (and no `#!`). || 145 145 || '''`#!comment`''' || Do not process the text in this section, i.e. contents exist only in the plain text - not in the rendered page. || 146 || '''`#!rtl`''' || Introduce a Right-To-Left block with appropriate CSS direction and styling ''(since 0.12.2)'' ||146 || '''`#!rtl`''' || Introduce a Right-To-Left block with appropriate CSS direction and styling. ''(since 0.12.2)'' || 147 147 |||| || 148 148 ||||= '''[=#HTMLrelated HTML related]''' =|| 149 149 || '''`#!html`''' || Insert custom HTML in a wiki page. || 150 || '''`#!htmlcomment`''' || Insert an HTML comment in a wiki page (''since 0.12'').||150 || '''`#!htmlcomment`''' || Insert an HTML comment in a wiki page. (''since 0.12'') || 151 151 || || Note that `#!html` blocks have to be ''self-contained'', i.e. you can't start an HTML element in one block and close it later in a second block. Use the following processors for achieving a similar effect. || 152 || '''`#!div`''' || Wrap an arbitrary Wiki content inside a <div> element (''since 0.11''). ||153 || '''`#!span`''' || Wrap an arbitrary Wiki content inside a <span> element (''since 0.11''). ||154 || '''`#!td`''' || Wrap an arbitrary Wiki content inside a <td> element(''since 0.12'') ||155 || '''`#!th`''' || Wrap an arbitrary Wiki content inside a <th> element(''since 0.12'') ||156 || '''`#!tr`''' || Can optionally be used for wrapping `#!td` and `#!th` blocks, either for specifying row attributes or better visual grouping (''since 0.12'') ||152 || '''`#!div`''' || Wrap wiki content inside a <div> element. || 153 || '''`#!span`''' || Wrap wiki content inside a <span> element. || 154 || '''`#!td`''' || Wrap wiki content inside a <td> element. (''since 0.12'') || 155 || '''`#!th`''' || Wrap wiki content inside a <th> element. (''since 0.12'') || 156 || '''`#!tr`''' || Can optionally be used for wrapping `#!td` and `#!th` blocks, either for specifying row attributes or better visual grouping. (''since 0.12'') || 157 157 || '''`#!table`''' || Can optionally be used for wrapping `#!tr`, `#!td` and `#!th` blocks, for specifying table attributes. One current limitation however is that tables cannot be nested. (''since 0.12'') || 158 158 || || See WikiHtml for example usage and more details about these processors. || … … 163 163 |||| || 164 164 ||||= '''[=#CodeHighlightingSupport Code Highlighting Support]''' =|| 165 || '''`#!c`''' [[BR]] '''`#!cpp`''' (C++) [[BR]] '''`#!python`''' [[BR]] '''`#!perl`''' [[BR]] '''`#!ruby`''' [[BR]] '''`#!php`''' [[BR]] '''`#!asp`''' [[BR]] '''`#!java`''' [[BR]] '''`#!js`''' (Javascript) [[BR]] '''`#!sql`''' [[BR]] '''`#!xml`''' (XML or HTML) [[BR]] '''`#!sh`''' (!Bourne/Bash shell) [[BR]] '''etc.''' [[BR]] || Trac includes processors to provide inline syntax highlighting for source code in various languages. [[BR]] [[BR]] Trac relies on external software packages for syntax coloring, like [http://pygments.org Pygments]. [[BR]] [[BR]] See TracSyntaxColoring for information about which languages are supported and how to enable support for more languages. ||165 || '''`#!c`''' [[BR]] '''`#!cpp`''' (C++) [[BR]] '''`#!python`''' [[BR]] '''`#!perl`''' [[BR]] '''`#!ruby`''' [[BR]] '''`#!php`''' [[BR]] '''`#!asp`''' [[BR]] '''`#!java`''' [[BR]] '''`#!js`''' (Javascript) [[BR]] '''`#!sql`''' [[BR]] '''`#!xml`''' (XML or HTML) [[BR]] '''`#!sh`''' (!Bourne/Bash shell) [[BR]] '''etc.''' [[BR]] || Trac includes processors to provide inline syntax highlighting for source code in various languages. [[BR]] [[BR]] Trac relies on [http://pygments.org Pygments] for syntax coloring. [[BR]] [[BR]] See TracSyntaxColoring for information about which languages are supported and how to enable support for more languages. || 166 166 |||| || 167 167 … … 173 173 Some examples: 174 174 {{{ 175 {{{ 176 #!text/html 175 {{{#!text/html 177 176 <h1>text</h1> 178 177 }}} … … 181 180 {{{#!td 182 181 The result will be syntax highlighted HTML code: 182 {{{#!text/html 183 <h1>text</h1> 184 }}} 185 186 The same is valid for all other [TracSyntaxColoring#SyntaxColoringSupport mime types supported]. 187 }}} 188 }}} 189 {{{#!td 183 190 {{{ 184 #!text/html 185 <h1>text</h1> 186 }}} 187 188 The same is valid for all other [TracSyntaxColoring#SyntaxColoringSupport mime types supported]. 189 }}} 190 }}} 191 {{{#!td 192 {{{ 193 {{{ 194 #!diff 191 {{{#!diff 195 192 --- Version 55 196 193 +++ Version 56 … … 213 210 {{{#!td 214 211 '''`#!diff`''' has a particularly nice renderer: 215 {{{ 216 #!diff 212 {{{#!diff 217 213 --- Version 55 218 214 +++ Version 56 … … 233 229 }}} 234 230 235 For more processor macros developed and/or contributed by users, visit the [http ://trac-hacks.org/wiki/WikiStartTrac Hacks] community site.231 For more processor macros developed and/or contributed by users, visit the [https://trac-hacks.org Trac Hacks] community site. 236 232 237 233 Developing processors is no different from Wiki macros. In fact, they work the same way, only the usage syntax differs. See WikiMacros#DevelopingCustomMacros for more information.