Author: vmassol Date: 2008-02-23 15:03:57 +0100 (Sat, 23 Feb 2008) New Revision: 7921
Modified: xwiki-products/xwiki-enterprise/trunk/wiki/src/main/resources/XWiki/XWikiSyntax Log: Trying to fix the XHTML validation issue. Note that the quote macro doesn't currently generate valid XHTML (see http://jira.xwiki.org/jira/browse/XWIKI-2146). Modified: xwiki-products/xwiki-enterprise/trunk/wiki/src/main/resources/XWiki/XWikiSyntax =================================================================== --- xwiki-products/xwiki-enterprise/trunk/wiki/src/main/resources/XWiki/XWikiSyntax 2008-02-22 17:34:17 UTC (rev 7920) +++ xwiki-products/xwiki-enterprise/trunk/wiki/src/main/resources/XWiki/XWikiSyntax 2008-02-23 14:03:57 UTC (rev 7921) @@ -358,10 +358,10 @@ <tt>text in monospace font</tt><p class="paragraph"/> Text in a <sup>superscript</sup> format<p class="paragraph"/> Text in a <sub>subscript</sub> format<p class="paragraph"/> - <blockquote class="quote"> + <blockquote class="quote"><p> Here is some text with a quote <a href="http://www.xwiki.org">Source</a> - </blockquote><p class="paragraph"/> + </p></blockquote><p class="paragraph"/> </td> </tr> </table> @@ -397,7 +397,7 @@ ** <tt>virtualWikiAlias</tt>: An optional string containing the name of a virtual wiki. The link will point to a page inside that virtual wiki. Example: "mywiki". ** <tt>space</tt>: An optional Wiki Space name. If not space is specified the current space is used. Example: "Main". ** <tt>reference</tt>: The link reference. This can be either a URI in the form <tt>protocol:path</tt> (example: "http://xwiki.org", "mailto:[EMAIL PROTECTED]") or a wiki page name (example: "WebHome"). -** <tt>queryString</tt>: An optional query string for specifying parameters that will be used in the rendered URL. Example: "mydata1=5&mydata2=Hello". +** <tt>queryString</tt>: An optional query string for specifying parameters that will be used in the rendered URL. Example: "mydata1=5&amp;mydata2=Hello". ** <tt>anchor</tt>: An optional anchor name pointing to an anchor defined in the referenced link. Note that in XWiki anchors are automatically created for titles. Example: "TableOfContentAnchor". * <tt>interWikiAlias</tt>: An optional [Inter Wiki>http://en.wikipedia.org/wiki/InterWiki] alias as defined in the InterWiki Map (see the [Admin Guide>http://platform.xwiki.org/xwiki/bin/view/AdminGuide/]). Example: "wikipedia" * <tt>target</tt>: An optional string corresponding to the HTML <tt>target</tt> attribute for a HTML <tt>a</tt> link element. This element is used when rendering the link. It defaults to opening the link in the current page. Examples: "_self", "_blank" _______________________________________________ notifications mailing list [email protected] http://lists.xwiki.org/mailman/listinfo/notifications
