summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/custcmd.doc2
-rw-r--r--doc/faq.doc7
2 files changed, 7 insertions, 2 deletions
diff --git a/doc/custcmd.doc b/doc/custcmd.doc
index c6be4c4..0cc1d4d 100644
--- a/doc/custcmd.doc
+++ b/doc/custcmd.doc
@@ -34,7 +34,7 @@ The simplest form of an alias is a simple substitution of the form
\endverbatim
For example defining the following alias:
\verbatim
- ALIASES += sideeffect="\par Side Effects:\n"
+ ALIASES += sideeffect="\par Side Effects:^^"
\endverbatim
will allow you to
put the command `\sideeffect` (or `@sideeffect`) in the documentation, which
diff --git a/doc/faq.doc b/doc/faq.doc
index 8a3aee8..e460d4a 100644
--- a/doc/faq.doc
+++ b/doc/faq.doc
@@ -266,12 +266,17 @@ in a configuration file from the command line (assuming a UNIX like environment)
( cat Doxyfile ; echo "PROJECT_NUMBER=1.0" ) | doxygen -
\endverbatim
-For Windows the following would do the same:
+For Windows command line the following would do the same:
\verbatim
( type Doxyfile & echo PROJECT_NUMBER=1.0 ) | doxygen.exe -
\endverbatim
+For Windows Powershell (checked with version 5.1) the following would do the same:
+\verbatim
+&{ type Doxyfile ; echo "PROJECT_NUMBER=1.0" } | doxygen -
+\endverbatim
+
If multiple options with the same name are specified then doxygen will use
the last one. To append to an existing option you can use the += operator.