]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/quickbook/src/phrase_tags.hpp
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / tools / quickbook / src / phrase_tags.hpp
1 /*=============================================================================
2 Copyright (c) 2011 Daniel James
3
4 Use, modification and distribution is subject to the Boost Software
5 License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
6 http://www.boost.org/LICENSE_1_0.txt)
7 =============================================================================*/
8
9 #if !defined(BOOST_SPIRIT_QUICKBOOK_PHRASE_TAGS_HPP)
10 #define BOOST_SPIRIT_QUICKBOOK_PHRASE_TAGS_HPP
11
12 #include "value_tags.hpp"
13
14 namespace quickbook
15 {
16 // clang-format off
17
18 QUICKBOOK_VALUE_TAGS(phrase_tags, 0x500,
19 (image)
20 (url)(link)(anchor)
21 (funcref)(classref)(memberref)(enumref)
22 (macroref)(headerref)(conceptref)(globalref)
23 (bold)(italic)(underline)(teletype)(strikethrough)(quote)(replaceable)
24 (footnote)
25 (escape)
26 (break_mark)
27 (role)
28 )
29
30 QUICKBOOK_VALUE_NAMED_TAGS(source_mode_tags, 0x550,
31 ((cpp)("c++"))
32 ((python)("python"))
33 ((teletype)("teletype"))
34 )
35
36 QUICKBOOK_VALUE_TAGS(code_tags, 0x560,
37 (code_block)
38 (inline_code)
39 (inline_code_block)
40 (next_source_mode)
41 )
42
43 // clang-format on
44 }
45
46 #endif