A simple equation: x = y + 2
+ * ``` + * + * Tag description by Mozilla Contributors licensed under CC-BY-SA 2.5 + * https://developer.mozilla.org/en-US/docs/Web/HTML/Element/u + */ +class VarTag extends AbstractContainerTag +{ + const TAG = 'var'; +} \ No newline at end of file diff --git a/src/Html5/InlineTextSemantics/WbrTag.php b/src/Html5/InlineTextSemantics/WbrTag.php new file mode 100644 index 0000000..93a3293 --- /dev/null +++ b/src/Html5/InlineTextSemantics/WbrTag.php @@ -0,0 +1,19 @@ + HTML element represents a word break opportunity—a position within + * text where the browser may optionally break a line, though its line-breaking + * rules would not otherwise create a break at that location. + * + * Tag description by Mozilla Contributors licensed under CC-BY-SA 2.5 + * https://developer.mozilla.org/en-US/docs/Web/HTML/Element/wbr + */ +class WbrTag extends AbstractTag +{ + // TODO figure out a way to make tags like this prefer having no whitespace added around them + const TAG = 'wbr'; +} \ No newline at end of file