Changes between Version 6 and Version 7 of WikiProcessors
- Timestamp:
- Jun 27, 2010, 3:12:18 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiProcessors
v6 v7 58 58 {{{#!td style="border: none" 59 59 {{{ 60 #!html 61 <pre class="wiki">{{{ 62 #!html 63 <h1 style="color: grey">This is raw HTML</h1> 64 }}}</pre> 60 {{{ 61 <h1 style="color: grey">This is raw HTML</h1> 62 }}} 65 63 }}} 66 64 }}} … … 105 103 }}} 106 104 }}} 107 108 105 |----------------------------------------------------------------- 106 {{{#!td colspan=2 align=center style="border: none" 107 108 __Example 3__: Searching tickets from a wiki page, by keywords. 109 }}} 110 |----------------------------------------------------------------- 111 {{{#!td style="border: none" 112 {{{ 113 {{{ 114 #!html 115 <form action="/query" method="get"> 116 <input type="text" name="keywords" value="~" size="30"> 117 <input type="submit" value="Search by Keywords"> 118 <!-- To control what fields show up use hidden fields 119 <input type="hidden" name="col" value="id"> 120 <input type="hidden" name="col" value="summary"> 121 <input type="hidden" name="col" value="status"> 122 <input type="hidden" name="col" value="milestone"> 123 <input type="hidden" name="col" value="version"> 124 <input type="hidden" name="col" value="owner"> 125 <input type="hidden" name="col" value="priority"> 126 <input type="hidden" name="col" value="component"> 127 --> 128 </form> 129 }}} 130 }}} 131 }}} 132 {{{#!td valign=top style="border: none; padding: 1em" 133 {{{ 134 #!html 135 <form action="/query" method="get"> 136 <input type="text" name="keywords" value="~" size="30"> 137 <input type="submit" value="Search by Keywords"> 138 <!-- To control what fields show up use hidden fields 139 <input type="hidden" name="col" value="id"> 140 <input type="hidden" name="col" value="summary"> 141 <input type="hidden" name="col" value="status"> 142 <input type="hidden" name="col" value="milestone"> 143 <input type="hidden" name="col" value="version"> 144 <input type="hidden" name="col" value="owner"> 145 <input type="hidden" name="col" value="priority"> 146 <input type="hidden" name="col" value="component"> 147 --> 148 </form> 149 }}} 150 }}} 109 151 == Available Processors == 110 152 … … 136 178 (''since 0.12'') 137 179 138 See WikiHtml for more details about these processors.180 See WikiHtml for example usage and more details about these processors. 139 181 140 182 === Other Markups === … … 152 194 `#!ruby` (Ruby), `#!php` (PHP), `#!asp` (ASP), `#!java` (Java), 153 195 `#!js` (Javascript), `#!sql (SQL)`, `#!xml` (XML or HTML), 154 `#!sh` ( Bourne/Bash shell), etc.196 `#!sh` (!Bourne/Bash shell), etc. 155 197 156 198 Trac relies on external software packages for syntax coloring, 157 199 like [http://pygments.org Pygments]. 158 200 159 See TracSyntaxColoring for information sabout which languages201 See TracSyntaxColoring for information about which languages 160 202 are supported and how to enable support for more languages. 161 203 … … 174 216 }}} 175 217 176 The same is valid for all other mime types supported.177 178 === Additional Processors === 218 The same is valid for all other [TracSyntaxColoring#SyntaxColoringSupport mime types supported]. 219 220 179 221 For more processor macros developed and/or contributed by users, visit: 180 222 * [trac:ProcessorBazaar] … … 189 231 ---- 190 232 See also: WikiMacros, WikiHtml, WikiRestructuredText, TracSyntaxColoring, WikiFormatting, TracGuide 233