diff --git a/CMakeLists.txt b/CMakeLists.txt index 2973673..9a82c06 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required (VERSION 3.2) project(remwharead - VERSION 0.1.2 + VERSION 0.1.3 LANGUAGES CXX ) diff --git a/src/adoc.cpp b/src/adoc.cpp index 4fdeaa6..647d45a 100644 --- a/src/adoc.cpp +++ b/src/adoc.cpp @@ -70,7 +70,6 @@ void export_adoc(const vector &entries, ostream &out) { out << " (link:" << entry.archive_uri << "[archived version])"; } - out << endl; bool separator = false; for (const string &tag : entry.tags) @@ -81,7 +80,7 @@ void export_adoc(const vector &entries, ostream &out) } if (!separator) { - out << "| "; + out << "\n| "; separator = true; } @@ -101,11 +100,11 @@ void export_adoc(const vector &entries, ostream &out) out << ", "; } } - out << endl; + out << endl << endl; if (!entry.description.empty()) { - out << endl << entry.description << endl << endl; + out << entry.description << endl << endl; } }