]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/quickbook/src/block_tags.hpp
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / boost / tools / quickbook / src / block_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_TABLE_TAGS_HPP)
10 #define BOOST_SPIRIT_QUICKBOOK_TABLE_TAGS_HPP
11
12 #include "value_tags.hpp"
13
14 namespace quickbook
15 {
16 // clang-format off
17
18 QUICKBOOK_VALUE_TAGS(block_tags, 0x200,
19 (begin_section)(end_section)
20 (generic_heading)
21 (heading1)(heading2)(heading3)(heading4)(heading5)(heading6)
22 (blurb)(blockquote)(preformatted)
23 (warning)(caution)(important)(note)(tip)(block)
24 (macro_definition)(template_definition)
25 (variable_list)(table)
26 (xinclude)(import)(include)
27 (paragraph)(paragraph_in_list)
28 (ordered_list)(itemized_list)
29 (hr)
30 )
31
32 QUICKBOOK_VALUE_TAGS(table_tags, 0x250,
33 (title)(row)
34 )
35
36 QUICKBOOK_VALUE_TAGS(general_tags, 0x300,
37 (element_id)(include_id)(list_indent)(list_mark)
38 )
39
40 // clang-format on
41 }
42
43 #endif