mirror of
https://github.com/boostorg/quickbook.git
synced 2026-01-26 18:52:26 +00:00
Includes: - Detemplate syntax highlighter. - Allow escaped markup in comments in highlighter. - Remove whitespace hat was inserted after anchors. - Use fs::path in a couple more places. - Handle blocks inside phrases better (can happen with templates). [SVN r71862]
23 lines
497 B
Plaintext
23 lines
497 B
Plaintext
[article C++ Code Blocks
|
|
[quickbook 1.5]
|
|
]
|
|
|
|
// No escape
|
|
/* No escape */
|
|
/* No escape
|
|
* with newlines
|
|
*/
|
|
// In Header: <``[@boost:/boost/optional/optional.hpp boost/optional/optional.hpp]``>
|
|
/* In Header: <``[@boost:/boost/optional/optional.hpp boost/optional/optional.hpp]``> */
|
|
/* Multiple escapes: ``/italic/``
|
|
* ``_underline_````*bold*``
|
|
*/
|
|
|
|
A badly formed comment:
|
|
|
|
/* Oh dear
|
|
|
|
A badly formed comment with an escape:
|
|
|
|
/* Oh dear ``*bold*``
|