]> git.mxchange.org Git - friendica.git/blob - library/HTMLPurifier/HTMLModule/Ruby.php
Merge branch 'master' of https://github.com/friendica/friendica
[friendica.git] / library / HTMLPurifier / HTMLModule / Ruby.php
1 <?php
2
3 /**
4  * XHTML 1.1 Ruby Annotation Module, defines elements that indicate
5  * short runs of text alongside base text for annotation or pronounciation.
6  */
7 class HTMLPurifier_HTMLModule_Ruby extends HTMLPurifier_HTMLModule
8 {
9
10     public $name = 'Ruby';
11
12     public function setup($config) {
13         $this->addElement('ruby', 'Inline',
14             'Custom: ((rb, (rt | (rp, rt, rp))) | (rbc, rtc, rtc?))',
15             'Common');
16         $this->addElement('rbc', false, 'Required: rb', 'Common');
17         $this->addElement('rtc', false, 'Required: rt', 'Common');
18         $rb = $this->addElement('rb', false, 'Inline', 'Common');
19         $rb->excludes = array('ruby' => true);
20         $rt = $this->addElement('rt', false, 'Inline', 'Common', array('rbspan' => 'Number'));
21         $rt->excludes = array('ruby' => true);
22         $this->addElement('rp', false, 'Optional: #PCDATA', 'Common');
23     }
24
25 }
26
27 // vim: et sw=4 sts=4