summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/Controls/Samples/TMarkdown/Home.page
blob: 4cd0f86bcf6c261900863454a463eb81eb137caa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<com:TContent ID="body">

<h1>TMarkdown Samples</h1>

<table class="sampletable">

<tr><td class="samplenote">
Formatting text and code:
</td><td class="sampleaction">
<com:TMarkdown ShowLineNumbers="true">
PRADO Markdown Test
===================

Some text and a list:
* item 1
* item 2

Now, some code:

```php
public function test() {
  // comment
  echo "look me i'm colorful";
}
```
</com:TMarkdown>
</td></tr>

</table>

</com:TContent>