wiki-convert/src/main/java/wikimedia/html/conversion/CustomAsciiDocDocumentBuilder.java [159:166]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void emitContent(String str) throws IOException {
        for (String[] pairs : MARKUP_FIXES) {
            if (str.indexOf(pairs[0]) != 1) {
                str = str.replaceAll(pairs[0], pairs[1]);
            }
        }
        super.emitContent(str);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



wiki-convert/src/main/java/wikimedia/html/conversion/GithubMarkdownDocumentBuilder.java [258:265]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void emitContent(String str) throws IOException {
        for (String[] pairs : MARKUP_FIXES) {
            if (str.indexOf(pairs[0]) != 1) {
                str = str.replaceAll(pairs[0], pairs[1]);
            }
        }
        super.emitContent(str);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



