summary_rfc.xml - sfeed_tests - sfeed tests and RSS and Atom files | |
git clone git://git.codemadness.org/sfeed_tests | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
summary_rfc.xml (888B) | |
--- | |
1 <feed> | |
2 | |
3 <!-- 3.1.1.3. XHTML --> | |
4 | |
5 <!-- | |
6 | |
7 If the value of "type" is "xhtml", the content of the Text construct | |
8 MUST be a single XHTML div element [XHTML] and SHOULD be suitable for | |
9 handling as XHTML. The XHTML div element itself MUST NOT be | |
10 considered part of the content. Atom Processors that display the | |
11 content MAY use the markup to aid in displaying it. The escaped | |
12 versions of characters such as "&" and ">" represent those | |
13 characters, not markup. | |
14 | |
15 ^ | |
16 sfeed does handle part of the div element and uses it to aid in displayi… | |
17 --> | |
18 | |
19 <entry> | |
20 <summary type="xhtml"> | |
21 <div xmlns="http://www.w3.org/1999/xhtml"> | |
22 This is <b>XHTML</b> content. | |
23 </div> | |
24 </summary> | |
25 </entry> | |
26 | |
27 <entry> | |
28 <summary type="xhtml"> | |
29 <xhtml:div xmlns:xhtml="http://www.w3.org/1999/xhtml"> | |
30 This is <xhtml:b>XHTML</xhtml:b> content. | |
31 </xhtml:div> | |
32 </summary> | |
33 </entry> | |
34 | |
35 </feed> |