| 107 | using Poco::File; |
| 108 | |
| 109 | void CMarkdown::Load(EntityMap &entityMap) |
| 110 | { |
| 111 | entityMap["amp"] = "&"; |
| 112 | entityMap["quot"] = "\""; |
| 113 | entityMap["apos"] = "'"; |
| 114 | entityMap["lt"] = "<"; |
| 115 | entityMap["gt"] = ">"; |
| 116 | } |
| 117 | |
| 118 | void CMarkdown::Load(EntityMap &entityMap, int dummy) |
| 119 | { |
no test coverage detected