Changes between Initial Version and Version 1 of Ticket #15918
- Timestamp:
- 12/20/2010 04:17:38 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #15918
- Property Keywords theme parser removed
-
Property
Component
changed from
Template
toFormatting
-
Ticket #15918 – Description
initial v1 2 2 3 3 Create article with following HTML: 4 5 {{{ 4 6 <div class="wassup"><a href="#">WP IZ ASSUM</a></div> 5 Browser will get: <div class="wassup"><a href="#">WP IZ ASSUM</a></div> 7 }}} 8 9 Browser will get: 10 11 {{{ 12 <div class="wassup"><a href="#">WP IZ ASSUM</a></div> 13 }}} 14 6 15 All seems to be fine! Now get rid of unnecessary div. 7 16 8 17 Create article with following HTML: 18 19 {{{ 9 20 <a href="#">WP IZ ASSUM</a> 10 Browser will get: <p><a href="#">WP IZ ASSUM</a></p> 21 }}} 22 23 Browser will get: 24 25 {{{ 26 <p><a href="#">WP IZ ASSUM</a></p> 27 }}} 28 11 29 Dunno why there is extra <p> but who cares. All seems to be OK. 12 30 13 31 Create article with following HTML: 32 33 {{{ 14 34 <figure><a href="#">WP IZ ASSUM</a> 15 35 </figure> 36 }}} 37 16 38 Browser will get: 39 40 {{{ 17 41 <figure><a href="#">WP IZ ASSUM</a><br /> 18 42 </figure> 43 }}} 19 44 20 45 Now isn't that cool? But check what is even cooler! 21 46 22 47 Create article with following HTML: 48 49 {{{ 23 50 <figure><a href="#">WP IZ ASSUM</a> 24 51 <figcaption>NO IT'S BUGGY AS HELL</figcaption> 25 52 </figure> 53 }}} 26 54 27 55 Browser will get: 56 {{{ 28 57 <figure><a href="#">WP IZ ASSUM</a></p> 29 58 <figcaption>NO IT’S BUGGY AS HELL</figcaption> 30 59 </figure> 60 }}} 31 61 32 62 Wow! Say hello to invalid markup and rendering problems! Auto-closing of tags turned off. No matter of the settings I still get this nice messed up html. WYSIWYG turned off also.