-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
260 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Doxyfile | ||
.bookignore | ||
make.bat | ||
make.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
_book/ | ||
node_modules/ | ||
html/ | ||
xml/ | ||
latex/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# Doxyfile 1.8.11 | ||
|
||
PROJECT_NAME = "d2itemreader" | ||
OUTPUT_DIRECTORY = | ||
OPTIMIZE_OUTPUT_FOR_C = YES | ||
MARKDOWN_SUPPORT = YES | ||
AUTOLINK_SUPPORT = YES | ||
INLINE_SIMPLE_STRUCTS = YES | ||
TYPEDEF_HIDES_STRUCT = YES | ||
EXTRACT_ALL = YES | ||
EXTRACT_STATIC = NO | ||
|
||
# The INPUT tag is used to specify the files and/or directories that contain | ||
# documented source files. You may enter file names like myfile.cpp or | ||
# directories like /usr/src/myproject. Separate the files or directories with | ||
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING | ||
# Note: If this tag is empty the current directory is searched. | ||
|
||
INPUT = ../src/d2itemreader.h | ||
|
||
GENERATE_HTML = NO | ||
GENERATE_LATEX = NO | ||
CLASS_DIAGRAMS = NO | ||
|
||
#--------------------------------------------------------------------------- | ||
# Configuration options related to the XML output | ||
#--------------------------------------------------------------------------- | ||
|
||
# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that | ||
# captures the structure of the code including all documentation. | ||
# The default value is: NO. | ||
|
||
GENERATE_XML = YES | ||
|
||
# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a | ||
# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of | ||
# it. | ||
# The default directory is: xml. | ||
# This tag requires that the tag GENERATE_XML is set to YES. | ||
|
||
XML_OUTPUT = xml | ||
|
||
# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program | ||
# listings (including syntax highlighting and cross-referencing information) to | ||
# the XML output. Note that enabling this will significantly increase the size | ||
# of the XML output. | ||
# The default value is: YES. | ||
# This tag requires that the tag GENERATE_XML is set to YES. | ||
|
||
XML_PROGRAMLISTING = YES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Summary | ||
|
||
* [Introduction](INDEX.md) | ||
* [API Reference](api.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
{% extends "website/layout.html" %} | ||
|
||
{% block title %}{{ page.title }} · {{ super() }}{% endblock %} | ||
{% block description %}{{ page.description }}{% endblock %} | ||
|
||
{% block head %} | ||
{{ super() }} | ||
|
||
{% if page.next and page.next.path %} | ||
<link rel="next" href="{{ page.next.path|resolveFile }}" /> | ||
{% endif %} | ||
{% if page.previous and page.previous.path %} | ||
<link rel="prev" href="{{ page.previous.path|resolveFile }}" /> | ||
{% endif %} | ||
{% endblock %} | ||
|
||
{% block body %} | ||
<div class="gb-page-wrapper"> | ||
<header class="gb-page-header"> | ||
<div class="container"> | ||
{% block header %} | ||
{% block search_input %}{% endblock %} | ||
|
||
<a href="{{ "/"|resolveFile }}" class="logo"> | ||
<h1>{{ config.title }}</h1> | ||
</a> | ||
|
||
<a href="{{ config.github_url }}" class="btn btn-link pull-right hidden-xs"><i class="octicon octicon-mark-github"></i> Github</a> | ||
|
||
{% if glossary.length > 0 %} | ||
<a href="{{ ('/' + glossary.path)|resolveFile }}" class="btn btn-link pull-right hidden-xs">Glossary</a> | ||
{% endif %} | ||
|
||
{% block header_nav %} | ||
{% if page.next and page.next.path %} | ||
<a href="{{ page.next.path|resolveFile }}" class="btn btn-link pull-right hidden-xs"> | ||
<i class="octicon octicon-chevron-right"></i> | ||
</a> | ||
{% endif %} | ||
{% if page.previous and page.previous.path %} | ||
<a href="{{ page.previous.path|resolveFile }}" class="btn btn-link pull-right hidden-xs"> | ||
<i class="octicon octicon-chevron-left"></i> | ||
</a> | ||
{% endif %} | ||
{% endblock %} | ||
{% endblock %} | ||
</div> | ||
</header> | ||
|
||
<div class="gb-page-body"> | ||
<div class="gb-page-inner"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-3"> | ||
{% include "website/sidenav.html" %} | ||
</div> | ||
<div class="col-md-9"> | ||
{% block search_results %} | ||
{% block page %} | ||
<div class="gb-markdown book-page-inner"> | ||
{{ page.content|safe }} | ||
</div> | ||
{% endblock %} | ||
{% endblock %} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<footer class="gb-page-footer"> | ||
<div class="container"> | ||
<ul class="menu"> | ||
<li> | ||
<a href="#">Return to the top</a> | ||
</li> | ||
<li> | ||
<a href="#">Updated {{ file.mtime|date('MMM Do YY') }}</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</footer> | ||
</div> | ||
|
||
<script src="{{ "gitbook.js"|resolveAsset }}"></script> | ||
{% for resource in plugins.resources.js %} | ||
{% if resource.url %} | ||
<script src="{{ resource.url }}"></script> | ||
{% else %} | ||
<script src="{{ resource.path|resolveAsset }}"></script> | ||
{% endif %} | ||
{% endfor %} | ||
<script> | ||
(function() { | ||
gitbook.page.hasChanged({{ template.getJSContext()|dump|safe }}); | ||
})(); | ||
</script> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"plugins": ["theme-official","-sharing","-fontsettings","-search"], | ||
"title": "d2itemreader", | ||
"github_url": "https://github.com/squeek502/d2itemreader", | ||
"structure": { | ||
"readme": "INDEX.md" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@echo off | ||
|
||
call npm install https://github.com/squeek502/moxygen | ||
|
||
call doxygen | ||
copy /Y "../README.md" "./INDEX.md" | ||
call "./node_modules/.bin/moxygen" ./xml --anchors | ||
call gitbook install | ||
call gitbook build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/usr/bin/env bash | ||
|
||
npm install https://github.com/squeek502/moxygen | ||
|
||
doxygen | ||
cp -f "../README.md" "./INDEX.md" | ||
"./node_modules/.bin/moxygen" ./xml --anchors | ||
gitbook install | ||
gitbook build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.gb-markdown h3 { | ||
padding-top: 1.5rem; | ||
border-top: 1px solid #ddd; | ||
box-shadow: 0 -2px 5px 0 rgba(140, 144, 155, 0.15); | ||
} | ||
|
||
.gb-markdown h4 { | ||
font-size: 1em; | ||
} |
Oops, something went wrong.