summaryrefslogtreecommitdiffstats
path: root/src/htmldocvisitor.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove not used classalbert-github2019-07-071-8/+0
| | | | | | | As per comment in `docvisitor.h`: ``` class DocCopy; // TODO: no longer generated => remove ```
* issue #7033 Syntax highlighting doesn't work when calling \dontinclude from ↵albert-github2019-06-061-2/+4
| | | | | | Markdown files Don't use the file name extension of the including file but of the included file. In case of no included filename or no extension, fall back of the file extension of the including file.
* Replaced NULL by 0.Dimitri van Heesch2019-04-281-1/+1
|
* Merge branch 'feature/bug_init_fd_line' of ↵Dimitri van Heesch2019-04-281-1/+1
|\ | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_init_fd_line
| * Crash in case of usage of \line without \includealbert-github2019-04-191-1/+1
| | | | | | | | | | | | | | | | In case thee `line` command is used without previous `\inclide` or `\dontinclude` command doxygen will crash due to a non initialized fd. We get the message: warning: No previous '\include' or \dontinclude' command for '\line' present also a small correcting regarding the warning message is done.
* | Improved const correctness and added support for inline namespacesDimitri van Heesch2019-04-211-1/+1
|/
* Merge pull request #6861 from albert-github/feature/bug_html_attributesDimitri van Heesch2019-03-101-2/+40
|\ | | | | Multiple use of HTML attributes
| * Multiple use of HTML attributesalbert-github2019-02-281-2/+40
| | | | | | | | | | | | In case an attribute is used multiple times the XHTML validator gives (here for the style attribute): parser error : Attribute style redefined Created routine to merge these types of attributes.
* | Merge pull request #6868 from albert-github/feature/bug_secref_multicolDimitri van Heesch2019-03-091-2/+2
|\ \ | | | | | | secreflist command output shows in 1 column (HTML)
| * | secref command output shows in 1 column (HTML)albert-github2019-03-041-2/+2
| | | | | | | | | | | | | | | The output from the `\secref` command shows in 1 column instead of 3. The `column-count` (also possibile without `-moz` or `-webkit`) should be with the `<ul>` tag instead of the `<div>` tag
* | | Merge branch 'feature/bug_lineno_split_examples' of ↵Dimitri van Heesch2019-03-091-6/+13
|\ \ \ | |/ / |/| | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_lineno_split_examples
| * | Show line numbers in "split" examplesalbert-github2019-03-031-3/+10
| | | | | | | | | | | | | | | | | | With the commands like `\skip`, `\skipline` it is possible to show parts of a file for further explanation / tutorials. They can be started with `\include` or `\dontinclude` but in case `\include` specifies that the line numbers have to be shown they are only shown in the full example and not in the split up example - show line numbers in split up example in case `lineno` is required - add `lineno` option to `\dontinclude` so here also line numbers can be shown.
* | | Fix for unmatched </p> when using \until as the first commandDimitri van Heesch2019-03-031-6/+4
|/ /
* | Refactored Definition and derived classes such that they are abstract interfacesDimitri van Heesch2019-02-281-4/+6
|/
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-02-171-1/+1
|\
| * Adjustment of xhtml1-transitional.dtdalbert-github2019-02-161-1/+1
| | | | | | | | | | - mapping changed due to missing `doxygen=` - externalRef part changeddue to missing`doxygen=`
* | a named anchor does not need custom attributes and minor other corrections.Dimitri van Heesch2019-02-171-0/+2
| |
* | Bug 136299 - attributes to <p> tag get lostalbert-github2019-02-041-7/+9
|/ | | | | | | | | | | Besides the `p` tag there were a number of other tags were also the attributes were lost: - `br` - `hr` - `a` in case of used as an anchor i.e. with the `name=` attribute In case of a `caption` with a `table` and no `id=` attribute with the `caption` there was still an anchor generated In scanner.l the warnings message was a bit unclear.
* Merge branch 'cheoljoo-run_java_once_3rd_trial'Dimitri van Heesch2019-01-081-4/+9
|\
| * Merge branch 'run_java_once_3rd_trial' of ↵Dimitri van Heesch2019-01-081-7/+9
| |\ | | | | | | | | | https://github.com/cheoljoo/doxygen into cheoljoo-run_java_once_3rd_trial
| * \ Merge branch 'run_java_once_3rd_trial' of ↵Dimitri van Heesch2018-12-271-1/+4
| |\ \ | | |/ | | | | | | https://github.com/cheoljoo/doxygen into cheoljoo-run_java_once_3rd_trial
| | * JAVA_ONCE -> FASTCharles.Lee2018-12-261-1/+1
| | |
| | * mergeCharles.Lee2018-12-241-70/+211
| | |\
| | * | add format in writePlantUMLSource() and gathered in one pu file. But it is ↵Charles.Lee2018-08-281-1/+4
| | | | | | | | | | | | | | | | not final
* | | | issue #6744 Ampersand in Markdown image URL is not escaped in XML outputalbert-github2019-01-061-2/+2
| | | | | | | | | | | | | | | | Convert name / url based on HTML / XML conventions and don't do double conversions (XML).
* | | | Fixed alt attribute appearing in <object> tag for SVG imagesDimitri van Heesch2019-01-051-57/+39
| | | |
* | | | Fixed missing end paragraph marker when inline image appeared as last item.Dimitri van Heesch2019-01-051-1/+6
| | | |
* | | | Issue #6039: Links on image in Markdown (Origin: bugzilla #769223)Dimitri van Heesch2019-01-031-25/+64
|/ / /
* | | Merge pull request #6578 from albert-github/feature/bug_addindex_htmlDimitri van Heesch2018-12-261-0/+5
|\ \ \ | |_|/ |/| | Multiple addindex commands in HTML with same name
| * | Multiple addindex commands in HTML with same namealbert-github2018-10-271-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | It is possible to specify an addindex multiple times. In HTML this resulted in - a 'a' tag with with the same 'name' attribute - in CHM only one occurrence was shown. this has been corrected. (see e.g. the index of 'flex' in the CHM manual generated ffrom master).
* | | Improved robustness of the emoji featureDimitri van Heesch2018-12-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Changes: - Use of `@emoji name` instead of `:name:` - Support only GitHub emojis (i.e. without spaces or special characters in the name) - Provided script to download images for LaTeX support. - XML output now has <emoji> tag with name an unicode sequence.
* | | Tag sequence incorrect for svg image (XHTML)albert-github2018-12-111-13/+3
| | | | | | | | | | | | svg images should also follow the rules a for other type images regarding div tag and paragraph tags
* | | Fixed merge problemDimitri van Heesch2018-12-031-4/+3
| | |
* | | Merge pull request #6643 from albert-github/feature/bug_xhtml_test_30Dimitri van Heesch2018-12-031-1/+6
|\ \ \ | | | | | | | | Incorrect number tag sequence for xhtml with htmlinclude command possible
| * | | Incorrect number tag sequence for xhtml with htmlinclude command possiblealbert-github2018-11-251-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | Analogous to the `\htmlonly` also with the `\htmlinclude` command it is possible that some parts are added that cannot be inside a `<p> ... <\/p>` and thus we have to temporary close (and later reopen) the paragraph. The option `[block]` has been added to the `\htmlinclude` command (analogous to the `\htmlonly` command). Problem can be seen with the default doxygen test 30 (`[030_htmlinclude.dox]: test the \htmlinclude command`).
* | | | Incorrect tag sequence for xhtml with latexinclude command possiblealbert-github2018-12-031-0/+1
| | | | | | | | | | | | | | | | Analogous to DontInclude (test 21) the wrong xhtml tag sequence can also occur with `\latexinclude`
* | | | Fixed incorrect XHTML output for test 021Dimitri van Heesch2018-12-021-28/+55
| | | |
* | | | Restructured code to avoid the need for global stateDimitri van Heesch2018-11-251-38/+54
| | | |
* | | | Incorrect number of start / end paragraph tags for xhtml with image commandalbert-github2018-11-241-2/+4
|/ / / | | | | | | | | | | | | In case of `\image` a force closed paragraph is not always force opened again. Problem can be seen with the default doxygen test 31 (`[031_image.dox]: test the \image command`).
* | | Incorrect number of start / end paragraph tags for xhtml with htmlonlyalbert-github2018-11-241-14/+19
| | | | | | | | | | | | | | | In case of `\htmlonly[block]` the a force closed paragraph is not always force opened again. Problem can be seen with the default doxygen test 20 (`[020_only.dox]: test the \*only and \*endonly commands`).
* | | Merge branch 'feature/bug_inline_image' of ↵Dimitri van Heesch2018-11-111-11/+51
|\ \ \ | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_inline_image
| * | | Inline imagesalbert-github2018-08-091-10/+50
| | | | | | | | | | | | | | | | Create the possibility of inline images with the `\image` command by means of the option `inline`.
* | | | issue_6517: Emoji supportalbert-github2018-10-011-0/+15
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added issue support for the different output types. - Sources of the emoji - based on the Unicode definition v11.0: - https://unicode.org/emoji/charts/full-emoji-list.html - http://www.unicode.org/emoji/charts/full-emoji-modifiers.html - github definition list: - https://api.github.com/emojis - Input of emoji: :<test>: with the restriction that direct after the opening colon and direct before the closing colon no space is allowed - doctokinizer.l, adding detection of emoji and new command `\:` - doktokinizer.h, adding "word" type TK_EMOJI - docparser.* handling of new "word" type TK_EMOJI (analogous to HTML Entities), handling of new command `\:` - cmdmapper,cpp, cmdmapper.h, adding new command `\:` - htmlentity.cpp, adding new definition required for new command `\:` - Emoji - emoji.cpp, emoji.h, class for handling emoji analogous to HTML Entities, including small directions on how to update the code when a new emoji is defined. Not everything is converted to lowercase for comparison and accents are removed. - doxygen.cpp possibility to create list of supported emoji - handling emoji for output types (analogous to HTML Entities), see documentation for different output types - docparser.h, *docvisitor.* - rtfdocvisitor.* converting output to UTF-16 (based on http://scruss.com/blog/2017/03/12/in-the-unlikely-event-you-need-to-represent-emoji-in-rtf-using-perl/) - latexdocvisitor.*, handling arguments for emoji in output (see also latexgen.cpp for meaning of the arguments of doxygenemoji). - latexgen.cpp, adding new latex command for doxygen (doxygenemoji) and prevent too many open file (code before documentclass) - config.xml, definition of `LATEX_EMOJI_DIRECTORY` with path to images required for LaTeX output - Documentation: - emojisup.doc, user description - commands.doc, description of new command `\:` - index.doc, reference to emoji chapter - xmlcmds.doc, adjust reference to next chapter as a new chapter is added - Doxyfile*, adding emoji chapter Build system - CMakeLists.txt adding new files
* | | Merge pull request #6402 from albert-github/feature/bug_579628Dimitri van Heesch2018-09-011-32/+73
|\ \ \ | |_|/ |/| | Bug 579628 - Merging of consecutive repeated commands creates poorly-structured HTML
| * | Bug 579628 - Merging of consecutive repeated commands creates ↵albert-github2018-07-201-32/+73
| |/ | | | | | | | | | | | | poorly-structured HTML Most issues from this report were already implemented. Extended for cross reference lists with the possibility to "style" intermediate items as well. (also some code structure, i.e. mnemonics instead of numbers).
* | Bug 667993 - HTML tags <u> and </u> not supportedalbert-github2018-07-071-0/+6
|/ | | | Added underline possibility and strike through possibility for the different output formats insofar it is possible (other similar possibilities are not always possible for all output formats either).
* XHTML image tag mandatory alt attributealbert-github2018-04-091-3/+11
| | | | | The alt attribute is mandatory for the image tag, it is possible to have it written out with an empty string. In case with the image tag there is no alt attribute the empty string alt attribute is added.
* + Added: support RTL for DocXRefItem in htmlahoogol2017-09-021-3/+6
| | | | - Removed: support RTL form Return section in html, for consistency with parameter sections
* Fixed one remained compile error in clangahoogol2017-06-281-1/+1
|
* Added support for RTL(right to left) languages like Arabic and Persian in ↵ahoogol2017-06-251-23/+56
| | | | HTML output