forked from donatj/SimpleCalendar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmddoc.xml
47 lines (40 loc) · 1.03 KB
/
mddoc.xml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<mddoc>
<docpage target="README.md" autoloader="psr0" autoloader-root="src">
<section title="Simple Calendar">
<badge-poser type="version"/>
<badge-poser type="license"/>
<badge-scrutinizer name="donatj/SimpleCalendar" type="quality"/>
<badge-scrutinizer name="donatj/SimpleCalendar" type="coverage"/>
<badge-travis name="donatj/SimpleCalendar"/>
<text>A very simple, easy to use PHP calendar rendering class.</text>
<section title="Requirements">
<composer-requires/>
</section>
<section title="Installing">
<composer-install/>
</section>
<section title="Sample Usage">
<text>
<![CDATA[
```php
<?php
require('SimpleCalendar.php');
$Calendar = new donatj\SimpleCalendar('June 2010');
$Calendar->show();
```
or
```php
<?php
require('SimpleCalendar.php');
$Calendar = new donatj\SimpleCalendar();
$Calendar->setDate('June 5 2010');
$Calendar->show();
```
]]></text>
</section>
<section title="Documentation">
<recursivedirectory name="lib"/>
</section>
</section>
</docpage>
</mddoc>