Cosmetic changes in the Documentation.

This commit is contained in:
tastytea 2019-07-28 02:14:06 +02:00
parent 38e8e1dc81
commit 998cc32546
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
5 changed files with 30 additions and 25 deletions

View File

@ -43,16 +43,22 @@ namespace Export
//! Replace strings in text.
const string replace(string text, const replacemap &replacements) const;
//! Replaces characters in tags that asciidoctor doesn't like.
const string replace_in_tag(const string &text) const;
//! Replaces characters in title that asciidoctor doesn't like.
const string replace_in_title(const string &text) const;
//! Replaces characters in URI that asciidoctor doesn't like.
const string replace_in_uri(const string &text) const;
//! Print things sorted by tag.
void print_tags(const tagmap &tags) const;
//! Get ISO-8601 day from Database::entry.
const string get_day(const Database::entry &entry) const;
//! Get ISO-8601 time from Database::entry.
const string get_time(const Database::entry &entry) const;
};

View File

@ -23,7 +23,6 @@
#include <vector>
#include <chrono>
#include <sqlite/connection.hpp>
#include "types.hpp"
namespace remwharead
{