Changeset 242
- Timestamp:
- 02/22/2008 08:34:52 (9 months ago)
- Files:
-
- 1 modified
-
branches/superredcloth/test/threshold.yml (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/superredcloth/test/threshold.yml
r236 r242 147 147 desc: To include a short snippet of code such as XHTML or Javascript, surround it with @ âatâ symbols. XHTML significant characters within a code phrase will be escaped for display to the reader. 148 148 in: About the @<hr />@ tag. 149 out: <p>About the <code>& #60;hr /></code> tag.</p>149 out: <p>About the <code><hr /></code> tag.</p> 150 150 --- 151 151 name: links … … 260 260 </script> 261 261 out: |- 262 <pre><code>& #60;script>262 <pre><code><script> 263 263 // a Javascript example 264 alert( "Hello World");265 & #60;/script>264 alert("Hello World"); 265 </script> 266 266 </code></pre> 267 267 --- … … 363 363 out: |- 364 364 <p>A <span class="caps">PHP</span> code example.</p> 365 <pre><code>& #60;?php365 <pre><code><?php 366 366 function hello() { 367 367 // display a hello message 368 368 </code> 369 <code> print "Hello, World";369 <code> print "Hello, World"; 370 370 } 371 ?& #62;371 ?> 372 372 </code></pre> 373 373 <p>Following paragraph.</p> … … 460 460 out: |- 461 461 <pre> 462 A HTML & #60;b>example</b>462 A HTML <b>example</b> 463 463 </pre> 464 464 note: This syntax is supported for backwards compatibility only, and doesnât always work as expected. The block modifier pre. should be used instead. … … 472 472 out: |- 473 473 <p><code> 474 Another HTML & #60;b>example</b>474 Another HTML <b>example</b> 475 475 </code></p> 476 476 note: This syntax is supported for backwards compatibility only, and doesnât always work as expected. The block modifier bc. should be used instead.