aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/default_misc.org
diff options
context:
space:
mode:
authorRalph Amissah <ralph.amissah@gmail.com>2021-09-01 15:40:20 -0400
committerRalph Amissah <ralph.amissah@gmail.com>2021-09-09 22:03:15 -0400
commit1f8b96b650ea645c1a92b40f29c8625b6228d53a (patch)
tree8e261492e487432d42d4d24d4908b634ab87e3d3 /org/default_misc.org
parentxmls, epub3 toc_nav.xhtml toc.ncx (diff)
metadata "curate" replaces "harvest"
- "curated metadata" instead of "metadata harvest" - css color change to related pages, light theme
Diffstat (limited to 'org/default_misc.org')
-rw-r--r--org/default_misc.org22
1 files changed, 11 insertions, 11 deletions
diff --git a/org/default_misc.org b/org/default_misc.org
index 50a932c..0a1dad4 100644
--- a/org/default_misc.org
+++ b/org/default_misc.org
@@ -29,7 +29,7 @@
+/
module doc_reform.meta.defaults;
<<meta_defaults_template_node>>
-<<meta_defaults_template_harvest>>
+<<meta_defaults_template_curate_metadata>>
<<meta_defaults_template_biblio>>
<<defaults_template_markup>>
<<defaults_template_language_codes>>
@@ -85,14 +85,14 @@ template spineNode() {
}
#+END_SRC
-** template: harvest
+** template: curate
-#+NAME: meta_defaults_template_harvest
+#+NAME: meta_defaults_template_curate_metadata
#+BEGIN_SRC d
-template spineHarvest() {
- @safe auto spineHarvest() {
- struct _Harvest {
- struct Harvest {
+template spineCurateMetadata() {
+ @safe auto spineCurateMetadata() {
+ struct _Curate {
+ struct Curate {
string title = "";
string[] author_arr = [];
string author = "";
@@ -114,11 +114,11 @@ template spineHarvest() {
string url_html_scroll = "";
string url_epub = "";
}
- Harvest harvest;
- Harvest[] harvests;
- Harvest[][string][string][string][string] subject_trees;
+ Curate curate;
+ Curate[] curates;
+ Curate[][string][string][string][string] subject_trees;
}
- return _Harvest();
+ return _Curate();
}
}
#+END_SRC