marianoguerra / rst2html5

transform restructuredtext documents to html5 + twitter's bootstrap css, deck.js or reveal.js
http://marianoguerra.github.com/rst2html5
MIT License
177 stars 51 forks source link

Fix #72: raw-directive has problems with multiple and nested tags. #74

Closed torfsen closed 8 years ago

torfsen commented 8 years ago

This PR fixes issue #72 (raw-directive has problems with multiple and nested tags).

The previous code for handling raw-directives used a special Raw element class. To support multiple tags I had to change this so that raw-directives are now handled specially in the higher level code (see html5css3.raw). The fix for nested tags is as described in the original bug report.

marianoguerra commented 8 years ago

thanks!