minor doc updates

This commit is contained in:
Mark Gillard 2022-09-07 17:50:47 +03:00
parent 7876c96aae
commit f5c5d7f36f
9 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
[![banner](docs/images/banner_small.png)][homepage]
[![banner](docs/images/banner.png)][homepage]
[![Releases](https://img.shields.io/github/v/release/marzer/tomlplusplus?style=flat-square)](https://github.com/marzer/tomlplusplus/releases)
[![C++17](docs/images/badge-C++17.svg)][cpp_compilers]
[![TOML](docs/images/badge-TOML.svg)][v1.0.0]

Binary file not shown.

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

1
docs/images/banner.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 13 KiB

View File

@ -1,7 +1,7 @@
/*!
\mainpage toml++
\image html banner_small.png width=1280px
\image html banner.svg width=1280px
\tableofcontents

View File

@ -14,12 +14,11 @@ favicon = 'images/favicon.ico'
navbar = [ 'namespaces', 'annotated' ]
theme = 'dark'
extra_files = [
'images/banner_small.png',
'images/badge-awesome.svg',
'images/badge-TOML.svg',
'images/badge-gitter.svg'
]
html_header = '<style>div.poxy-main-banner { padding: 2rem; }</style>'
[warnings]

View File

@ -344,8 +344,8 @@ TOML_NAMESPACE_START // abi namespace
///
/// \detail \cpp
/// // desired result: [ [ 42 ] ]
/// auto bad = toml::array{ toml::array{ 42 } }
/// auto good = toml::array{ toml::inserter{ toml::array{ 42 } } }
/// auto bad = toml::array{ toml::array{ 42 } };
/// auto good = toml::array{ toml::inserter{ toml::array{ 42 } } };
/// std::cout << "bad: " << bad << "\n";
/// std::cout << "good:" << good << "\n";
/// \ecpp

View File

@ -1,4 +1,4 @@
misk>=0.6.1
poxy>=0.6.0
misk>=0.7.0
poxy>=0.7.0
pyyaml
python-dateutil