diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-12-25 09:04:23 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-25 09:04:23 (GMT) |
commit | ff3fdb3ac14a1f90334ca6c40eac46c772b5af63 (patch) | |
tree | 9fc8728c52e91e673137b631ef2f8bd613dfe164 /addon | |
parent | fabc8146c8bdbdedcb2d2d8630a5eb60de3f5dc0 (diff) | |
parent | fd3b60caa8bb99bec81b74d74f394c6043091c76 (diff) | |
download | Doxygen-ff3fdb3ac14a1f90334ca6c40eac46c772b5af63.zip Doxygen-ff3fdb3ac14a1f90334ca6c40eac46c772b5af63.tar.gz Doxygen-ff3fdb3ac14a1f90334ca6c40eac46c772b5af63.tar.bz2 |
Merge pull request #7230 from albert-github/feature/bug_formula_macrofile
Create possibility to define LaTeX commands for formulas
Diffstat (limited to 'addon')
-rw-r--r-- | addon/doxywizard/expert.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/addon/doxywizard/expert.cpp b/addon/doxywizard/expert.cpp index 64df27f..1303a22 100644 --- a/addon/doxywizard/expert.cpp +++ b/addon/doxywizard/expert.cpp @@ -398,6 +398,7 @@ static QString getDocsForNode(const QDomElement &child) // Remove / replace doxygen markup strings // the regular expressions are hard to read so the intention will be given + // Note: see also configgen.py in the src directory for other doxygen parts QRegExp regexp; // remove \n at end and replace by a space regexp.setPattern(SA("\\n$")); @@ -432,6 +433,8 @@ static QString getDocsForNode(const QDomElement &child) docs.replace(regexp,SA("\"External Indexing and Searching\"")); regexp.setPattern(SA("\\\\ref[ ]+external")); docs.replace(regexp,SA("\"Linking to external documentation\"")); + regexp.setPattern(SA("\\\\ref[ ]+formulas")); + docs.replace(regexp,SA("\"Including formulas\"")); // fallback for not handled docs.replace(SA("\\\\ref"),SA("")); // \b word -> <b>word<\b> |