diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-08-04 17:01:52 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2019-08-04 17:01:52 (GMT) |
commit | a9dc222845e49f8010c409469455e1b2d183fad0 (patch) | |
tree | 5c6a3db374d42beb091399f29f3cc7d6a4d178d8 /src/markdown.cpp | |
parent | 1abdec7eeeaec850067a5847c9174e99855c110b (diff) | |
parent | 3c3efc26e6b258ef2c3916f7e1b2c07254039ad4 (diff) | |
download | Doxygen-a9dc222845e49f8010c409469455e1b2d183fad0.zip Doxygen-a9dc222845e49f8010c409469455e1b2d183fad0.tar.gz Doxygen-a9dc222845e49f8010c409469455e1b2d183fad0.tar.bz2 |
Merge branch 'feature/bug_endblock_msg' of https://github.com/albert-github/doxygen into albert-github-feature/bug_endblock_msg
Diffstat (limited to 'src/markdown.cpp')
-rw-r--r-- | src/markdown.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/markdown.cpp b/src/markdown.cpp index ec04b21..141b736 100644 --- a/src/markdown.cpp +++ b/src/markdown.cpp @@ -979,7 +979,7 @@ static int processCodeSpan(GrowBuf &out, const char *data, int /*offset*/, int s nl++; } else if (data[end]=='\'' && nb==1 && (end==size-1 || (end<size-1 && !isIdChar(end+1)))) - { // look for quoted strings like `some word', but skip strings like `it's cool` + { // look for quoted strings like 'some word', but skip strings like `it's cool` QCString textFragment; convertStringFragment(textFragment,data+nb,end-nb); out.addStr("‘"); |