Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Restore a comment containing the 'font' tag as it correctly describes the underlying code. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | html-cleanup |
Files: | files | file ages | folders |
SHA1: |
c6afc979abc4b9769449b21144c58a5f |
User & Date: | mistachkin 2015-11-16 03:43:15 |
Context
2016-06-22
| ||
09:11 | merge trunk ... (Closed-Leaf check-in: 414fc1e9 user: jan.nijtmans tags: html-cleanup) | |
2015-11-16
| ||
03:43 | Restore a comment containing the 'font' tag as it correctly describes the underlying code. ... (check-in: c6afc979 user: mistachkin tags: html-cleanup) | |
02:42 | Remove deprecated <font> tags. ... (check-in: 46861220 user: Isius tags: html-cleanup) | |
Changes
Changes to src/wikiformat.c.
︙ | ︙ | |||
236 237 238 239 240 241 242 | #define MARKUP_VERBATIM 61 /* ** The various markup is divided into the following types: */ #define MUTYPE_SINGLE 0x0001 /* <img>, <br>, or <hr> */ #define MUTYPE_BLOCK 0x0002 /* Forms a new paragraph. ex: <p>, <h2> */ | | | 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 | #define MARKUP_VERBATIM 61 /* ** The various markup is divided into the following types: */ #define MUTYPE_SINGLE 0x0001 /* <img>, <br>, or <hr> */ #define MUTYPE_BLOCK 0x0002 /* Forms a new paragraph. ex: <p>, <h2> */ #define MUTYPE_FONT 0x0004 /* Font changes. ex: <b>, <font>, <sub> */ #define MUTYPE_LIST 0x0010 /* Lists. <ol>, <ul>, or <dl> */ #define MUTYPE_LI 0x0020 /* List items. <li>, <dd>, <dt> */ #define MUTYPE_TABLE 0x0040 /* <table> */ #define MUTYPE_TR 0x0080 /* <tr> */ #define MUTYPE_TD 0x0100 /* <td> or <th> */ #define MUTYPE_SPECIAL 0x0200 /* <nowiki> or <verbatim> */ #define MUTYPE_HYPERLINK 0x0400 /* <a> */ |
︙ | ︙ |