| 62 | } |
| 63 | |
| 64 | QString getLicenseHtml() |
| 65 | { |
| 66 | HoeDown hoedown; |
| 67 | QFile dataFile(":/documents/COPYING.md"); |
| 68 | dataFile.open(QIODevice::ReadOnly); |
| 69 | QString output = hoedown.process(dataFile.readAll()); |
| 70 | return output; |
| 71 | } |
| 72 | |
| 73 | } |
| 74 |
no test coverage detected