aaronsw / html2text

Convert HTML to Markdown-formatted text.
http://www.aaronsw.com/2002/html2text/
GNU General Public License v3.0
2.61k stars 412 forks source link

Fail to produce src-code from doxygen-listing #15

Closed figgis closed 13 years ago

figgis commented 13 years ago

Trying e.g. http://dbus.freedesktop.org/doc/api/html/dbus-address_8c_source.html gives bogus output.

E.g

00043 struct DBusAddressEntry
00044 {
00045   DBusString method; 
00047   DBusList *keys;    
00048   DBusList *values;  
00049 };

is parsed as:

[00043][7] struct [DBusAddressEntry][8]
00044 {
[00045][9]   [DBusString][10] [method][11]; 
[00047][12]   [DBusList][13] *[keys][14];    
[00048][15]   [DBusList][13] *[values][16];  
00049 };
aaronsw commented 13 years ago

That's because those are links. You can use a parameter to turn linking off.

figgis commented 13 years ago

How stupid of me! Sorry I bothered you...