| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Miscounting lines in case a fenced code block
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When having the following code:
```
# The page
~~~
ABC
~~~
~~~
DEF
~~~
~~~
GHI ~~~
~~~
JKL~~~
\line17
```
we get the warnings:
```
.../aa.md:16: warning: Found unknown command '\line17'
```
instead of
```
.../aa.md:17: warning: Found unknown command '\line17'
```
The last character of the fenced code block is not handled in the code block.
This problem has been solved (and also checked against the previous examples of #8045 and #8123).
|
| |
|
|
|
|
|
|
|
| |
When SORT_BY_SCOPE_NAME = NO nested classes with the same name
but in different scopes were shown unsorted.
Now they are alphabetically sorted by scope name which make the
results more deterministic.
|
| |
|
|
|
|
| |
(part 2)
|
|
|
|
| |
parser
|
| |
|
| |
|
|
|
|
| |
configuration file (part 2)
|
|
|
|
| |
configuration file
|
|\ |
|
| | |
|
| |\
|/ /
| |
| | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_param_ilinebr
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
When having a simple file like:
```
/// \file
/// @brief Different xxxxxxxxxxxxxxxxxxxxx
/// @param[in] var = zzzzzz
/// @details Different yyyyyyyy
void fie(int var);
``
we see in the version 1.8.18 that the text is displayed as:
```
Parameters
[in] var = zzzzzz
Different yyyyyyyy
```
but in the newer versions this is like:
```
Parameters
[in] var = zzzzzz Different yyyyyyyy
```
the inserted intermediate `\ilinebr` are not handled as newlines
|
| | |
|
|\ \ |
|
| |\ \
| | | |
| | | | |
Refactoring position of layout_default.xml
|
| | | |
| | | |
| | | |
| | | | |
The position of the `layout_defaul.xml` was still done by a dedicated script and not by the resource manager.
|
|/ / / |
|
|/ / |
|
| |
| |
| |
| | |
project
|
| | |
|
| | |
|
|\ \
| |/ |
|
| |\
| | |
| | | |
issue #8269 Make failed when building layout.cpp
|
| |/
| |
| |
| |
| | |
When a `\r` is present of the line ending of the file `layout_default.xml` this leads to unexpected results (the `\r` should not be present at all).
By means of removing the `\r` this problem can be solved.
|
| | |
|
|/ |
|
| |
|
|\
| |
| | |
Remove warnings from util.cpp
|
| |
| |
| |
| |
| |
| |
| |
| | |
Remove warnings from util.cpp (as done on other places as well):
```
...\src\util.cpp(3592): warning C4242: '=': conversion from 'int' to 'char', possible loss of data
...\src\util.cpp(3593): warning C4242: '=': conversion from 'int' to 'char', possible loss of data
```
|
|\ \
| | |
| | | |
Miscounting of lines in case of inserting an anchor for a "H." tag
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
When having a simple file like:
```
# The page
# a section
##### a h5 section
\error7
```
we get as warning:
```
.../aa.md:8: warning: Found unknown command '\error7'
```
instead of
```
.../aa.md:7: warning: Found unknown command '\error7'
```
This is due to the fact that the
```
##### a h5 section
```
is translated into:
```
\anchor autotoc_md2
<h5>a h5 section</h5>
```
instead of
```
\anchor autotoc_md2\ilinebr <h5>a h5 section</h5>
```
|
|\ \ \
| | | |
| | | | |
Doxygen manual top rule is in uppercase.
|
| | |/
| |/|
| | |
| | |
| | |
| | | |
When generating the doxygen documentation we see that::
- the top rule is completely in uppercase (is OK in regular doxygen documentation)
- the renew of the was done at the wrong place
|
| | | |
|
| |/
|/| |
|
| | |
|
|/ |
|
|\
| |
| | |
Multiple anchors with member-group
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
When running a link checker on the CGAL (e.g. AABB_tree package) we get a lot of warnings like:
```
Processing file:///.../doc_output/AABB_tree/classCGAL_1_1AABB__tree.html
List of duplicate and empty anchors
member-group Lines: 191, 229, 258, 297, 316, 335, 347
```
The member-group anchor is shown like:
```
<a name="member-group"></a>
```
and create each time the `\name` command is used. the `\name` command can be used multiple times on a page.
There is (no way to) reference the anchor (like `<a href="#member-group">...`) found in the doxygen code.
Setting the name to the empty string prevents the anchor from being created.
|
|\ \
| | |
| | | |
Update CMakeLists.txt
|
| |/
| |
| |
| |
| |
| | |
Update CMakeLists.txt to allow cross compiling on Linux for Windows.
Pass -DCMAKE_CXX_FLAGS="$(CXXFLAGS) -DCYGWIN=1" to cmake so right PRETTY_FUNC is used in markdown.cpp when -DWIN32 is set somewhere else.
Pass -DCMAKE_EXE_LINKER_FLAGS="$(LDFLAGS) -Wl,--whole-archive -liconv -Wl,--no-whole-archive" (and make sure win-iconv is in library search path. https://github.com/win-iconv/win-iconv)
|
|\ \
| | |
| | | |
Usage of version and help in addons
|
| | |
| | |
| | |
| | | |
More consequent and consistent usage of help and version in addons.
|
|\ \ \
| | | |
| | | | |
Doxygen's own documentation doesn't build with recent LaTeX version
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Due to a recent change in the new distribution of LaTeX in the handling of the "input" commands we get the error like:
```
Appendix D.
(../html/examples/group/latex/refman_doc.tex (../html/examples/group/latex//gro
up__group1.tex) [243]
! I can't write on file `../html/examples/group/latex//group__group2.aux'.
\@include ...mmediate \openout \@partaux "#1.aux"
\immediate \write \@partau...
l.3 \include{group__group2}
Please type another output file name
! Emergency stop.
\@include ...mmediate \openout \@partaux "#1.aux"
\immediate \write \@partau...
l.3 \include{group__group2}
*** (job aborted, file error in nonstop mode)
```
The problem is that now an intermediate file is written to `../html/examples/group/latex//group__group2.aux` that was written in the older distributions as `./group__group2.aux`, so in the current directory.
Writing to sub directories of the current directory is possible but it is not allowed (unless special, dangerous, options are used) to write to directories outside tgese directories.
(see also: https://tex.stackexchange.com/questions/575120/problem-writing-aux-file)
This fix writes the examples in subdirectories in the latex directory and not under the, parallel, html directory. This means also that there is a cleaner and clearer distinction between the html and latex output.
|
|\ \ \
| | | |
| | | | |
Remove some build warnings
|
| | | |
| | | |
| | | |
| | | | |
Fix didn't have the expected effect
|