summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/quickbook/src/block_tags.hpp
blob: 88d89171578dc2e4be330e843ac76793770f6553 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*=============================================================================
    Copyright (c) 2011 Daniel James

    Use, modification and distribution is subject to the Boost Software
    License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
    http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/

#if !defined(BOOST_SPIRIT_QUICKBOOK_TABLE_TAGS_HPP)
#define BOOST_SPIRIT_QUICKBOOK_TABLE_TAGS_HPP

#include "value_tags.hpp"

namespace quickbook
{
    // clang-format off

    QUICKBOOK_VALUE_TAGS(block_tags, 0x200,
        (begin_section)(end_section)
        (generic_heading)
        (heading1)(heading2)(heading3)(heading4)(heading5)(heading6)
        (blurb)(blockquote)(preformatted)
        (warning)(caution)(important)(note)(tip)(block)
        (macro_definition)(template_definition)
        (variable_list)(table)
        (xinclude)(import)(include)
        (paragraph)(paragraph_in_list)
        (ordered_list)(itemized_list)
        (hr)
    )

    QUICKBOOK_VALUE_TAGS(table_tags, 0x250,
        (title)(row)
    )

    QUICKBOOK_VALUE_TAGS(general_tags, 0x300,
        (element_id)(include_id)(list_indent)(list_mark)
    )

    // clang-format on
}

#endif