This brings me to my second feature request: 'p' tag breadcrumbs. It is hard to tell what classes are applied to various block and inline elements. When a class is applied to a paragraph (or any other "container"), I'd like to see more than just the visual cue applied to the paragraph. So, when a class like 'PARA: Date' gets applied, it should show 'p >> PARA: Date' or something like that for that paragraph. This, in turn, would help with replacing the existing table implementation. Users could, in theory, build the entire table visually and would allow for complex tables to be built. For example, this would be possible (indented to make it slightly easier to read):
- Code: Select all
<p class="begin-table"></p>
<p class="begin-table-row"></p>
<p class="table-col colspan-2">Test</p>
<p class="end-table-row"></p>
<p class="begin-table-row"></p>
<p class="table-col">Test</p>
<p class="table-col">Test 2</p>
<p class="end-table-row"></p>
<p class="end-table"></p>