You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doxia-site-model/src/main/mdo/site.mdo
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -582,12 +582,12 @@ under the License.
582
582
583
583
<class java.clone="deep">
584
584
<name>Image</name>
585
-
<description>An image.</description>
585
+
<description>An image. Generates an "img" element (https://html.spec.whatwg.org/#the-img-element).</description>
586
586
<version>2.0.0+</version>
587
587
<fields>
588
588
<field xml.attribute="true">
589
589
<name>src</name>
590
-
<description>The source location.</description>
590
+
<description>The source location. Ends up in the "img src" attribute (https://html.spec.whatwg.org/#attr-img-src).</description>
591
591
<version>2.0.0+</version>
592
592
<type>String</type>
593
593
<required>true</required>
@@ -603,28 +603,28 @@ under the License.
603
603
</field>
604
604
<field xml.attribute="true">
605
605
<name>alt</name>
606
-
<description>The alternative text to use.</description>
606
+
<description>The alternative text to use. Ends up in the "img alt" attribute (https://html.spec.whatwg.org/#alt).(</description>
607
607
<version>2.0.0+</version>
608
608
<type>String</type>
609
609
<identifier>true</identifier>
610
610
</field>
611
611
<field xml.attribute="true">
612
612
<name>width</name>
613
-
<description>The width to use.</description>
613
+
<description>The width to use. Added to the generated "img style" attribute (https://html.spec.whatwg.org/#the-style-attribute) prefixed by "width: ".</description>
614
614
<version>2.0.0+</version>
615
615
<type>String</type>
616
616
<identifier>true</identifier>
617
617
</field>
618
618
<field xml.attribute="true">
619
619
<name>height</name>
620
-
<description>The height to use.</description>
620
+
<description>The height to use. Added to the generated "img style" attribute (https://html.spec.whatwg.org/#the-style-attribute) prefixed by "height: ".</description>
621
621
<version>2.0.0+</version>
622
622
<type>String</type>
623
623
<identifier>true</identifier>
624
624
</field>
625
625
<field xml.attribute="true">
626
626
<name>style</name>
627
-
<description>The style to use.</description>
627
+
<description>The style to use. Ends up in the "img style" attribute (https://html.spec.whatwg.org/#the-style-attribute) as is.</description>
0 commit comments