73ef4ff3
Hu Chunming
提交三方库
|
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
|
/*=============================================================================
Copyright (c) 2017 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_QUICKBOOK_BOOSTBOOK_TO_HTML_HPP)
#define BOOST_QUICKBOOK_BOOSTBOOK_TO_HTML_HPP
#include <string>
#include "path.hpp"
#include "string_view.hpp"
namespace quickbook
{
namespace detail
{
struct html_options
{
bool chunked_output;
boost::filesystem::path home_path;
path_or_url boost_root_path;
path_or_url css_path;
path_or_url graphics_path;
bool pretty_print;
html_options() : chunked_output(false) {}
};
int boostbook_to_html(quickbook::string_view, html_options const&);
}
}
#endif // BOOST_QUICKBOOK_BOOSTBOOK_TO_HTML_HPP
|