0
0
mirror of https://github.com/zeux/pugixml.git synced 2024-12-27 05:11:09 +08:00

docs: Extract configuration to config.adoc

This commit is contained in:
Arseny Kapoulkine 2015-03-22 00:35:06 -07:00
parent c94e8a7c0e
commit 56bdc6c5ea
3 changed files with 12 additions and 17 deletions

8
docs/config.adoc Normal file
View File

@ -0,0 +1,8 @@
website <http://pugixml.org>; repository <http://github.com/zeux/pugixml>
:version: 1.6
:toc: right
:source-highlighter: pygments
:source-language: c++
:sectanchors:
:sectlinks:
:imagesdir: images

View File

@ -1,13 +1,6 @@
= pugixml {version} manual
Arseny Kapoulkine <arseny.kapoulkine@gmail.com>
:version: 1.6
:toc: right
:source-highlighter: pygments
:source-language: c++
:sectanchors:
:sectlinks:
include::config.adoc[]
:numbered:
:imagesdir: images
[[overview]]
== Overview
@ -187,9 +180,9 @@ It's possible to compile pugixml as a standalone shared library. The process is
[source]
----
#ifdef _DLL
#define PUGIXML_API __declspec(dllexport)
#define PUGIXML_API __declspec(dllexport)
#else
#define PUGIXML_API __declspec(dllimport)
#define PUGIXML_API __declspec(dllimport)
#endif
----

View File

@ -1,11 +1,5 @@
= pugixml {version} quick start guide
Arseny Kapoulkine <arseny.kapoulkine@gmail.com>
:version: 1.6
:toc: right
:source-highlighter: pygments
:source-language: c++
:sectanchors:
:sectlinks:
include::config.adoc[]
[[introduction]]
== Introduction