diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2012-11-18 21:43:28 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2012-11-18 21:43:28 (GMT) |
commit | 1a68946cfa3e3ee749a683fdabc93e6b5311adeb (patch) | |
tree | 94365b932426de715b3a479094b7056e0c4f878b /src/configoptions.cpp | |
parent | 9c9313827b29876de43ad5305fd7ac162013359c (diff) | |
download | Doxygen-1a68946cfa3e3ee749a683fdabc93e6b5311adeb.zip Doxygen-1a68946cfa3e3ee749a683fdabc93e6b5311adeb.tar.gz Doxygen-1a68946cfa3e3ee749a683fdabc93e6b5311adeb.tar.bz2 |
Release-1.8.2-20121118
Diffstat (limited to 'src/configoptions.cpp')
-rw-r--r-- | src/configoptions.cpp | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/src/configoptions.cpp b/src/configoptions.cpp index 99e4798..229cd13 100644 --- a/src/configoptions.cpp +++ b/src/configoptions.cpp @@ -735,7 +735,8 @@ void addConfigOptions(Config *cfg) cl = cfg->addList( "ENABLED_SECTIONS", "The ENABLED_SECTIONS tag can be used to enable conditional\n" - "documentation sections, marked by \\if sectionname ... \\endif." + "documentation sections, marked by \\if section-label ... \\endif\n" + "and \\cond section-label ... \\endcond blocks." ); //---- ci = cfg->addInt( @@ -1065,6 +1066,14 @@ void addConfigOptions(Config *cfg) "FILTER_SOURCE_FILES is enabled." ); cl->addDependency("FILTER_SOURCE_FILES"); + //---- + cs = cfg->addString( + "USE_MDFILE_AS_MAINPAGE", + "If the USE_MD_FILE_AS_MAINPAGE tag refers to the name of a markdown file that\n" + "is part of the input, its contents will be placed on the main page (index.html).\n" + "This can be useful if you have a project on for instance GitHub and want reuse\n" + "the introduction page also for the doxygen output." + ); //--------------------------------------------------------------------------- cfg->addInfo("Source Browser","configuration options related to source browsing"); //--------------------------------------------------------------------------- @@ -1622,6 +1631,18 @@ void addConfigOptions(Config *cfg) FALSE ); //---- + ce = cfg->addEnum( + "MATHJAX_FORMAT", + "When MathJax is enabled you can set the default output format to be used for\n" + "thA MathJax output. Supported types are HTML-CSS, NativeMML (i.e. MathML) and\n" + "SVG. The default value is HTML-CSS, which is slower, but has the best\n" + "compatibility.", + "HTML-CSS" + ); + ce->addValue("HTML-CSS"); + ce->addValue("NativeMML"); + ce->addValue("SVG"); + //---- cs = cfg->addString( "MATHJAX_RELPATH", "When MathJax is enabled you need to specify the location relative to the\n" |