Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #142 from randomguy3/line-breaks | Dimitri van Heesch | 2017-10-24 | 1 | -0/+14 |
|\ | | | | | Implement "double-space line breaks" syntax in Markdown | ||||
| * | Implement "double-space line breaks" syntax in Markdown | Alex Merry | 2014-03-18 | 1 | -0/+14 |
| | | | | | | | | | | Ending a line with two spaces is supposed to create a line break in Markdown. This implements that syntax. | ||||
* | | Correction display of backtick in LaTeX | Dimitri van Heesch | 2017-10-10 | 1 | -12/+9 |
| | | |||||
* | | New table features mentioned in the documentation were not enabled. | Dimitri van Heesch | 2017-09-16 | 1 | -1/+1 |
| | | |||||
* | | Reverting pull request #537 until it will be fixed | Dmitry Dorofeev | 2016-11-03 | 1 | -8/+11 |
| | | | | | | | | | | | | | | | | | | | | Unfortunately code to support column/row spanning in markdown tables breaking latex/pdf generation in case of utf8 symbols in table headers (at least) Attempt to define USE_ORIGINAL_TABLES did not help, as important part of the code was moved to the wrong place, so this patch reverts original tables code while keeping span support in place for debugging/fixing. Just undefine USE_ORIGINAL_TABLES to enable span support. | ||||
* | | Merge pull request #537 from jmk0/table_markup_enhancements | Dimitri van Heesch | 2016-10-18 | 1 | -8/+173 |
|\ \ | | | | | | | Add support for more CSS and column/row spanning in markdown tables | ||||
| * | | Add support for more CSS formatting and column/row spanning in markdown tables | johnk | 2016-10-05 | 1 | -8/+173 |
| | | | |||||
* | | | Bug 772574 - __xxx__ not interpreted as markdown when xxx begins with a ↵ | Dimitri van Heesch | 2016-10-17 | 1 | -2/+7 |
|/ / | | | | | | | non-word character (e.g. __-1__) | ||||
* | | Bug 768954 - Segmentation fault when processing md containing only header | Dimitri van Heesch | 2016-07-31 | 1 | -10/+13 |
| | | |||||
* | | Fix issue escaping backslash inside markdown style code span | Dimitri van Heesch | 2016-07-23 | 1 | -0/+1 |
| | | |||||
* | | Bug 751416 - Markdown: > escaped within backticks | Dimitri van Heesch | 2016-05-26 | 1 | -6/+8 |
| | | |||||
* | | Bug 765692 - Using `@page` to add title to Markdown file generates surplus ↵ | Dimitri van Heesch | 2016-05-16 | 1 | -17/+40 |
| | | | | | | | | empty page. | ||||
* | | Added an option to add "anonymous" headings to the table of contents ↵ | Christoph Lipka | 2016-04-30 | 1 | -4/+12 |
| | | | | | | | | (currently Markdown only). | ||||
* | | Fixed issue escaping ndashes (\--) and mdashes (\---) | Dimitri van Heesch | 2016-02-07 | 1 | -16/+11 |
| | | |||||
* | | Changed configuration mechanism to directly access options in order to ↵ | Dimitri van Heesch | 2016-01-17 | 1 | -3/+3 |
| | | | | | | | | improve performance | ||||
* | | Bug 752845 - Non-alphanumeric characters in Markdown links don't work properly | Dimitri van Heesch | 2015-12-28 | 1 | -2/+2 |
| | | |||||
* | | Bug 731509 - Markdown backticks not processed within Markdown links. | Dimitri van Heesch | 2015-12-28 | 1 | -1/+2 |
| | | |||||
* | | Merge pull request #407 from albert-github/feature/bug_main_md_title | Dimitri van Heesch | 2015-11-15 | 1 | -2/+3 |
|\ \ | | | | | | | Title in case of USE_MDFILE_AS_MAINPAGE | ||||
| * | | Title in case of USE_MDFILE_AS_MAINPAGE | albert-github | 2015-11-02 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | In case USE_MDFILE_AS_MAINPAGE is used the title in the HTML output is the project name followed by the word documentation and in the index of LATeX / rtf the value is "Main Page", this is even the case when a level 1 header is given. This is a bit contrary to the handling non main pages. With this patch in case of USE_MDFILE_AS_MAINPAGE and a level 1 header in the beginning of the main page file this level 1 header is used title | ||||
* | | | Bug 756604 - Unable to prevent a numbered list | Dimitri van Heesch | 2015-11-01 | 1 | -3/+7 |
|/ / | |||||
* | | Bug 756724 - Inline markdown links don't support reference targets that ↵ | Dimitri van Heesch | 2015-10-20 | 1 | -4/+16 |
| | | | | | | | | contain ) | ||||
* | | Guarded debug prints against printing a NULL pointer. | Dimitri van Heesch | 2015-04-06 | 1 | -1/+1 |
| | | |||||
* | | add support for github flavored fenced code blocks | halex2005 | 2015-03-30 | 1 | -3/+5 |
| | | |||||
* | | Bump copyright year | Dimitri van Heesch | 2015-02-26 | 1 | -1/+1 |
| | | |||||
* | | Bug 743675 - Non-ascii characters are not emphasised | Dimitri van Heesch | 2015-02-21 | 1 | -1/+2 |
| | | |||||
* | | Merge pull request #272 from albert-github/feature/bug_unused | Dimitri van Heesch | 2015-01-03 | 1 | -1/+0 |
|\ \ | | | | | | | Remove unused local and static global variables | ||||
| * | | Remove unused local and static global variables | albert-github | 2014-12-27 | 1 | -1/+0 |
| | | | | | | | | | | | | Remove unused local and static global variables. Variables have been identified by Understand (version 758) from Scitools. | ||||
* | | | Fixed a couple of cases where sharing string data could lead to corruption | Dimitri van Heesch | 2015-01-02 | 1 | -1/+1 |
|/ / | | | | | | | | | Also made dangerous string access more visible by introducing rawData(). This replaces data() which will now return a constant string. | ||||
* | | Fixed several Coverity warnings | Dimitri van Heesch | 2014-11-15 | 1 | -1/+1 |
| | | |||||
* | | Initialized potentially uninitialized variable in markdown part | Dimitri van Heesch | 2014-10-23 | 1 | -1/+1 |
| | | |||||
* | | Bug 735620 - [PATCH] Remove not needed variable caching in src/markdown.cpp | Dimitri van Heesch | 2014-08-30 | 1 | -1/+1 |
| | | |||||
* | | Bug 735001 - No output for markdown pages with duplicate label title ↵ | Dimitri van Heesch | 2014-08-19 | 1 | -4/+4 |
| | | | | | | | | (different anchor) | ||||
* | | Bug 731947 - Support for PlantUML | Dimitri van Heesch | 2014-08-10 | 1 | -0/+4 |
| | | |||||
* | | Added support for \-- and \--- to prevent interpretation as ndash and mdash | Dimitri van Heesch | 2014-04-13 | 1 | -0/+10 |
| | | |||||
* | | Merge pull request #141 from randomguy3/fix-id-extract | Dimitri van Heesch | 2014-04-12 | 1 | -1/+0 |
|\ \ | | | | | | | Fix id parsing for atx markdown headers | ||||
| * | | Fix id parsing for atx markdown headers | Alex Merry | 2014-03-18 | 1 | -1/+0 |
| |/ | | | | | | | | | | | | | isAtxHeader() parses out the id and the title into the appropriate variables. The subsequent call to extractTitleId() would then have the trimmed title (without the id ref) as input, and hence always set id to be empty. | ||||
* | | Merge branch 'master' of github.com:doxygen/doxygen | Dimitri van Heesch | 2014-03-23 | 1 | -2/+2 |
|\ \ | |||||
| * | | Bug 726722 - Blockquote followed by text inserts an extra paragraph | albert-github | 2014-03-19 | 1 | -2/+2 |
| |/ | | | | | | | Remove superfluous \n from intermediate output. | ||||
* | | Bug 726294 - Markdown Extra - fenced code block: '>' before tab width parsed ↵ | Dimitri van Heesch | 2014-03-17 | 1 | -10/+27 |
|/ | | | | as block quote | ||||
* | In case of sections with the same name they are not reported. | albert-github | 2014-03-02 | 1 | -10/+43 |
| | | | | | In this patch it is checked if a section label has been used before and if so a warning is given with file name and line number (when possible) where the section label was used the first time. Note in section.h the item level was not initialized in the past in case of a copy constructor. | ||||
* | Updated copyright | Dimitri van Heesch | 2014-02-11 | 1 | -1/+1 |
| | |||||
* | Bug 723299 - Last line of code block lost if it is only one character and ↵ | Dimitri van Heesch | 2014-02-06 | 1 | -6/+6 |
| | | | | there is no text afterward | ||||
* | Merge branch 'wip/fix-link-id-on-last-line' of ↵ | Dimitri van Heesch | 2014-02-04 | 1 | -1/+1 |
|\ | | | | | | | | | | | | | | | https://github.com/agateau/doxygen into agateau-wip/fix-link-id-on-last-line Conflicts: testing/055/md_055_markdown.xml testing/055_markdown.md | ||||
| * | Make sure all ids in g_linkRefs are lower case | Aurélien Gâteau | 2014-02-04 | 1 | -1/+1 |
| | | | | | | | | | | Ids created from the last line were not lower-cased, leading to the link not being recognized. | ||||
* | | Bug 722788 - Command \| not working when last character in markdown table line | Dimitri van Heesch | 2014-01-26 | 1 | -1/+1 |
| | | |||||
* | | Bug 722711 - [PATCH] Link refs with no title swallow an extra newline | Dimitri van Heesch | 2014-01-26 | 1 | -3/+3 |
|/ | |||||
* | Bug 683115 - Command ignored when using umlauts in markdown and also ↵ | Dimitri van Heesch | 2014-01-08 | 1 | -8/+1 |
| | | | | C-comments in markdown didn't work properly | ||||
* | Bug 720092 - USE_MDFILE_AS_MAINPAGE doesn't work if full path is specified. | Dimitri van Heesch | 2013-12-12 | 1 | -2/+6 |
| | |||||
* | doxygen /** style creates spurious code blocks with markdown enabled | Dimitri van Heesch | 2013-12-10 | 1 | -0/+4 |
| | |||||
* | Allow links to other markdown pages of the form [link text](page.md) | Dimitri van Heesch | 2013-10-13 | 1 | -1/+7 |
| |