Home » Tools and Utilities » PhpDocumentor » Bug #6805
Rendering bug for verbatim HTML tags
Details
| Submitted | 2006-02-17 06:40 UTC |
|---|---|
| From | info at e-novative dot de |
| Assigned | cellog |
| Status | Closed |
| Package | PhpDocumentor |
| PHP Version | 5.1.2 |
| OS | Win XP |
| Roadmaps | (Not assigned) |
Comments
[2006-02-17 06:40 UTC] info at e-novative dot de
Description:
------------
This is nothing critical, just something I stumbled across.
Test script:
---------------
/**
* Heading
*
* This is a paragraph with tags: <<ul>> <<ol>> <<li>>
*
* @package Something
*/
Expected result:
----------------
Heading
This is a paragraph with tags: <ul> <ol> li>
Actual result:
--------------
Heading
This is a paragraph with tags: <ul> <ol> li>>
[2006-02-17 06:41 UTC] info at e-novative dot de
Sorry, the expected result should be
<ul> <ol> <li>
of course.