| 1831 | } |
| 1832 | |
| 1833 | bool Library::processMarkupAfterCode(const std::string &path) const |
| 1834 | { |
| 1835 | const auto it = utils::as_const(mData->mProcessAfterCode).find(Path::getFilenameExtensionInLowerCase(path)); |
| 1836 | return (it == mData->mProcessAfterCode.cend() || it->second); |
| 1837 | } |
| 1838 | |
| 1839 | bool Library::reportErrors(const std::string &path) const |
| 1840 | { |
no test coverage detected