1<?php
2/**
3 * Square Root element for the Ad-Hoc MathML plugin
4 *
5 * Defines  <mstyle> ... </mstyle> syntax
6 * More info: https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mstyle
7 *
8 * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
9 * @author     Sascha Leib <sascha.leib(at)kolmio.com>
10 */
11
12class syntax_plugin_adhocmathml_mstyle extends syntax_plugin_adhocmathml_abstract {
13
14	protected $tag = 'mstyle';
15
16	/* no specific attributes */
17
18    /**
19     * ODT Renderer Functions
20     */
21    function renderODTElementOpen($renderer, $HTMLelement, $data) {
22		//$renderer->table_open();
23    }
24    function renderODTElementClose($renderer, $element) {
25		//$renderer->table_close();
26    }
27}