PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Tools and Utilities » PhpDocumentor » Bug #6805

Rendering bug for verbatim HTML tags

Details

Submitted2006-02-17 06:40 UTC
Frominfo at e-novative dot de
Assignedcellog
StatusClosed
PackagePhpDocumentor
PHP Version5.1.2
OSWin 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.