hdoc-tools 0.11.7 → 0.11.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/hdoc-create.js CHANGED
@@ -1,91 +1,91 @@
1
- (function () {
2
- 'use strict';
3
-
4
- const fs = require('fs-extra'),
5
- path = require('path'),
6
- hdoc = require(path.join(__dirname, 'hdoc-module.js'));
7
-
8
- let doc_id,
9
- processed_links = {},
10
- file_count = 0,
11
- folder_count = 0;
12
-
13
- exports.run = async function (source_path) {
14
-
15
- console.log('Hornbill HDocBook Create', '\n');
16
- console.log('Path:', source_path, '\n');
17
-
18
- // Load the hdocbook-project.json file to get the docId
19
- // use the docId to get the book config
20
- const hdocbook_project_config_path = path.join(source_path, 'hdocbook-project.json');
21
- let hdocbook_project = {};
22
- try {
23
- hdocbook_project = require(hdocbook_project_config_path);
24
- } catch (e) {
25
- console.log(`File not found: ${hdocbook_project_config_path}\n`);
26
- console.log('hdoc create needs to be run in the root of a HDoc Book.\n');
27
- process.exit(1);
28
- }
29
- doc_id = hdocbook_project.docId;
30
-
31
- const book_path = path.join(source_path, doc_id),
32
- hdocbook_path = path.join(book_path, 'hdocbook.json');
33
-
34
- let hdocbook = {};
35
- try {
36
- hdocbook = require(hdocbook_path);
37
- } catch (e) {
38
- console.log(`File not found: ${hdocbook_path}\n`);
39
- console.log('hdoc create needs to be run in the root of a HDoc Book.\n');
40
- process.exit(1);
41
- }
42
-
43
- // Get paths from breadcrumb builder
44
- let nav_paths = hdoc.build_breadcrumbs(hdocbook.navigation.items);
45
- for (const key in nav_paths) {
46
- if (nav_paths.hasOwnProperty(key)) {
47
- for (let i = 0; i < nav_paths[key].length; i++) {
48
- if (!processed_links[nav_paths[key][i].link]) {
49
- nav_paths[key][i].path = path.join(source_path, nav_paths[key][i].link);
50
- await add_doc(nav_paths[key][i]);
51
- }
52
- }
53
- }
54
- }
55
- console.log('\n-----------------------');
56
- console.log(' Docs Creation Summary');
57
- console.log('-----------------------\n');
58
- console.log(` Files Created: ${file_count}`);
59
- console.log(`Folders Created: ${folder_count}\n`);
60
- };
61
-
62
- const add_doc = async function(doc_info) {
63
-
64
- // Does folder exist? Create if not
65
- const folder = path.dirname(doc_info.path);
66
- if (!fs.existsSync(folder)) {
67
- try {
68
- fs.mkdirSync(folder, true);
69
- console.log('Folder created:', folder);
70
- folder_count++;
71
- } catch {
72
- console.log('\nError creating folder', folder, ':', e);
73
- return;
74
- }
75
- }
76
-
77
- // Does file exist? Create if not
78
- if (!fs.existsSync(doc_info.path + '.md') && !fs.existsSync(doc_info.path + '.htm') && !fs.existsSync(doc_info.path + '.html')) {
79
- try {
80
- const file_path = doc_info.path + '.md';
81
- fs.writeFileSync(file_path, `# ${doc_info.text}\n`);
82
- console.log(' File created:', file_path);
83
- processed_links[doc_info.link] = true;
84
- file_count++;
85
- } catch (e) {
86
- console.log('\nError creating file', doc_info.path, ':', e);
87
- }
88
- }
89
- }
90
-
1
+ (function () {
2
+ 'use strict';
3
+
4
+ const fs = require('fs-extra'),
5
+ path = require('path'),
6
+ hdoc = require(path.join(__dirname, 'hdoc-module.js'));
7
+
8
+ let doc_id,
9
+ processed_links = {},
10
+ file_count = 0,
11
+ folder_count = 0;
12
+
13
+ exports.run = async function (source_path) {
14
+
15
+ console.log('Hornbill HDocBook Create', '\n');
16
+ console.log('Path:', source_path, '\n');
17
+
18
+ // Load the hdocbook-project.json file to get the docId
19
+ // use the docId to get the book config
20
+ const hdocbook_project_config_path = path.join(source_path, 'hdocbook-project.json');
21
+ let hdocbook_project = {};
22
+ try {
23
+ hdocbook_project = require(hdocbook_project_config_path);
24
+ } catch (e) {
25
+ console.log(`File not found: ${hdocbook_project_config_path}\n`);
26
+ console.log('hdoc create needs to be run in the root of a HDoc Book.\n');
27
+ process.exit(1);
28
+ }
29
+ doc_id = hdocbook_project.docId;
30
+
31
+ const book_path = path.join(source_path, doc_id),
32
+ hdocbook_path = path.join(book_path, 'hdocbook.json');
33
+
34
+ let hdocbook = {};
35
+ try {
36
+ hdocbook = require(hdocbook_path);
37
+ } catch (e) {
38
+ console.log(`File not found: ${hdocbook_path}\n`);
39
+ console.log('hdoc create needs to be run in the root of a HDoc Book.\n');
40
+ process.exit(1);
41
+ }
42
+
43
+ // Get paths from breadcrumb builder
44
+ let nav_paths = hdoc.build_breadcrumbs(hdocbook.navigation.items);
45
+ for (const key in nav_paths) {
46
+ if (nav_paths.hasOwnProperty(key)) {
47
+ for (let i = 0; i < nav_paths[key].length; i++) {
48
+ if (!processed_links[nav_paths[key][i].link]) {
49
+ nav_paths[key][i].path = path.join(source_path, nav_paths[key][i].link);
50
+ await add_doc(nav_paths[key][i]);
51
+ }
52
+ }
53
+ }
54
+ }
55
+ console.log('\n-----------------------');
56
+ console.log(' Docs Creation Summary');
57
+ console.log('-----------------------\n');
58
+ console.log(` Files Created: ${file_count}`);
59
+ console.log(`Folders Created: ${folder_count}\n`);
60
+ };
61
+
62
+ const add_doc = async function(doc_info) {
63
+
64
+ // Does folder exist? Create if not
65
+ const folder = path.dirname(doc_info.path);
66
+ if (!fs.existsSync(folder)) {
67
+ try {
68
+ fs.mkdirSync(folder, true);
69
+ console.log('Folder created:', folder);
70
+ folder_count++;
71
+ } catch {
72
+ console.log('\nError creating folder', folder, ':', e);
73
+ return;
74
+ }
75
+ }
76
+
77
+ // Does file exist? Create if not
78
+ if (!fs.existsSync(doc_info.path + '.md') && !fs.existsSync(doc_info.path + '.htm') && !fs.existsSync(doc_info.path + '.html')) {
79
+ try {
80
+ const file_path = doc_info.path + '.md';
81
+ fs.writeFileSync(file_path, `# ${doc_info.text}\n`);
82
+ console.log(' File created:', file_path);
83
+ processed_links[doc_info.link] = true;
84
+ file_count++;
85
+ } catch (e) {
86
+ console.log('\nError creating file', doc_info.path, ':', e);
87
+ }
88
+ }
89
+ }
90
+
91
91
  })();
package/hdoc-db.js CHANGED
@@ -1,95 +1,95 @@
1
- (function () {
2
- 'use strict';
3
-
4
- const html2text = require('html-to-text'),
5
- path = require('path'),
6
- hdoc = require(path.join(__dirname, 'hdoc-module.js'));
7
-
8
- exports.create_table = function (db, table_name, columns, virtual, fts5) {
9
- let create_sql = ['CREATE'];
10
- if (virtual) create_sql.push('VIRTUAL');
11
- create_sql.push('TABLE');
12
- create_sql.push(table_name);
13
- if (fts5) create_sql.push('USING fts5(');
14
- else create_sql.push('(');
15
- for (let i = 0; i < columns.length; i++) {
16
- if (i !== 0) create_sql.push(`,${columns[i]}`);
17
- else create_sql.push(columns[i]);
18
- }
19
- create_sql.push(');');
20
- try {
21
- db.exec(create_sql.join('\n'));
22
- return null;
23
- } catch (e) {
24
- return e;
25
- }
26
- };
27
-
28
- exports.insert_record = function (db, table, columns, values) {
29
- let response = {
30
- success: false,
31
- row_id: 0,
32
- error: null
33
- };
34
- let queryProps = [];
35
- queryProps.push(`INSERT INTO ${table}`);
36
- let cols = '(';
37
- let vals = 'VALUES (';
38
- for (let i = 0; i < columns.length; i++) {
39
- if (i === 0) {
40
- cols += `${columns[i].replace('UNINDEXED', '').replace('INTEGER', '').trim()}`;
41
- vals += '?';
42
- } else {
43
- cols += `, ${columns[i].replace('UNINDEXED', '').replace('INTEGER', '').trim()}`;
44
- vals += ', ?';
45
- }
46
- }
47
- cols += ')';
48
- vals += ')';
49
- queryProps.push(cols);
50
- queryProps.push(vals);
51
-
52
- try {
53
- const stmt = db.prepare(queryProps.join(' '));
54
- const info = stmt.run(values);
55
- response.row_id = info.lastInsertRowid;
56
- response.success = true;
57
- } catch (e) {
58
- response.error = e;
59
- }
60
- return response;
61
- };
62
-
63
- exports.transform_html_for_index = function (html_txt) {
64
- let response = {
65
- text: '',
66
- preview: '',
67
- fm_props: {}
68
- };
69
-
70
- // Get frontmatter properties
71
- const fm_headers = hdoc.getHTMLFrontmatterHeader(html_txt);
72
- response.fm_props = fm_headers.fm_properties;
73
-
74
- // Convert HTML into plain text
75
- response.text = html2text.convert(html_txt, {
76
- ignoreHref: true,
77
- ignoreImage: true,
78
- uppercaseHeadings: false,
79
- wordwrap: null
80
- });
81
-
82
- // Convert HTML into preview text
83
- response.preview = html2text.convert(html_txt, {
84
- baseElement: 'p',
85
- ignoreHref: true,
86
- ignoreImage: true,
87
- uppercaseHeadings: false,
88
- wordwrap: null
89
- });
90
- response.preview = hdoc.truncate_string(response.preview, 200, true).replace(/(?:\r\n|\r|\n)/g, ' ');
91
- return response;
92
- };
93
-
94
-
1
+ (function () {
2
+ 'use strict';
3
+
4
+ const html2text = require('html-to-text'),
5
+ path = require('path'),
6
+ hdoc = require(path.join(__dirname, 'hdoc-module.js'));
7
+
8
+ exports.create_table = function (db, table_name, columns, virtual, fts5) {
9
+ let create_sql = ['CREATE'];
10
+ if (virtual) create_sql.push('VIRTUAL');
11
+ create_sql.push('TABLE');
12
+ create_sql.push(table_name);
13
+ if (fts5) create_sql.push('USING fts5(');
14
+ else create_sql.push('(');
15
+ for (let i = 0; i < columns.length; i++) {
16
+ if (i !== 0) create_sql.push(`,${columns[i]}`);
17
+ else create_sql.push(columns[i]);
18
+ }
19
+ create_sql.push(');');
20
+ try {
21
+ db.exec(create_sql.join('\n'));
22
+ return null;
23
+ } catch (e) {
24
+ return e;
25
+ }
26
+ };
27
+
28
+ exports.insert_record = function (db, table, columns, values) {
29
+ let response = {
30
+ success: false,
31
+ row_id: 0,
32
+ error: null
33
+ };
34
+ let queryProps = [];
35
+ queryProps.push(`INSERT INTO ${table}`);
36
+ let cols = '(';
37
+ let vals = 'VALUES (';
38
+ for (let i = 0; i < columns.length; i++) {
39
+ if (i === 0) {
40
+ cols += `${columns[i].replace('UNINDEXED', '').replace('INTEGER', '').trim()}`;
41
+ vals += '?';
42
+ } else {
43
+ cols += `, ${columns[i].replace('UNINDEXED', '').replace('INTEGER', '').trim()}`;
44
+ vals += ', ?';
45
+ }
46
+ }
47
+ cols += ')';
48
+ vals += ')';
49
+ queryProps.push(cols);
50
+ queryProps.push(vals);
51
+
52
+ try {
53
+ const stmt = db.prepare(queryProps.join(' '));
54
+ const info = stmt.run(values);
55
+ response.row_id = info.lastInsertRowid;
56
+ response.success = true;
57
+ } catch (e) {
58
+ response.error = e;
59
+ }
60
+ return response;
61
+ };
62
+
63
+ exports.transform_html_for_index = function (html_txt) {
64
+ let response = {
65
+ text: '',
66
+ preview: '',
67
+ fm_props: {}
68
+ };
69
+
70
+ // Get frontmatter properties
71
+ const fm_headers = hdoc.getHTMLFrontmatterHeader(html_txt);
72
+ response.fm_props = fm_headers.fm_properties;
73
+
74
+ // Convert HTML into plain text
75
+ response.text = html2text.convert(html_txt, {
76
+ ignoreHref: true,
77
+ ignoreImage: true,
78
+ uppercaseHeadings: false,
79
+ wordwrap: null
80
+ });
81
+
82
+ // Convert HTML into preview text
83
+ response.preview = html2text.convert(html_txt, {
84
+ baseElement: 'p',
85
+ ignoreHref: true,
86
+ ignoreImage: true,
87
+ uppercaseHeadings: false,
88
+ wordwrap: null
89
+ });
90
+ response.preview = hdoc.truncate_string(response.preview, 200, true).replace(/(?:\r\n|\r|\n)/g, ' ');
91
+ return response;
92
+ };
93
+
94
+
95
95
  })();
package/hdoc-help.js CHANGED
@@ -1,50 +1,50 @@
1
- (function () {
2
- 'use strict';
3
-
4
- exports.run = function () {
5
-
6
- // STEVE: The purpose of this function is to output information about hdoc arguments
7
- const helpText = `
8
- Command Line Usage
9
-
10
- hdoc <command> [switches]
11
-
12
- Commands
13
-
14
- - build
15
- Performs a local build of the book, and outputs as a ZIP file. Use non-mandatory argument '--set-version 1.2.3' to set the version number of the built book
16
-
17
- - createDocs
18
- Creates folder structure and markdown documents as defined in the HDocBook navigation item links
19
-
20
- - help
21
- Outputs available arguments and switches
22
-
23
- - init
24
- Initializes a new HDocBook project from a template, using runtime input variables
25
-
26
- - serve
27
- Starts a local web server on port 3000, serving the content. Supports a -port N to use a different port
28
-
29
- - stats
30
- Returns statistics regarding the book you are working on. Supports a -v switch for verbose output
31
-
32
- - validate
33
- Validates the book content
34
-
35
- - bump
36
- Updates the semantic version number of the current book. If no options are specified, then the default of patch is applied:
37
- - major - updates the major version of the book. i.e. - 1.4.5 would become 2.0.0
38
- - minor - updates the minor version of the book. i.e. - 1.4.5 would become 1.5.0
39
- - patch (default) - updates the patch version of the book. i.e. - 1.4.5 would become 1.4.6
40
-
41
- - ver
42
- Returns the version of the current book
43
-
44
- Example
45
-
46
- hdoc stats -v
47
- `;
48
- console.log(helpText);
49
- };
1
+ (function () {
2
+ 'use strict';
3
+
4
+ exports.run = function () {
5
+
6
+ // STEVE: The purpose of this function is to output information about hdoc arguments
7
+ const helpText = `
8
+ Command Line Usage
9
+
10
+ hdoc <command> [switches]
11
+
12
+ Commands
13
+
14
+ - build
15
+ Performs a local build of the book, and outputs as a ZIP file. Use non-mandatory argument '--set-version 1.2.3' to set the version number of the built book
16
+
17
+ - createDocs
18
+ Creates folder structure and markdown documents as defined in the HDocBook navigation item links
19
+
20
+ - help
21
+ Outputs available arguments and switches
22
+
23
+ - init
24
+ Initializes a new HDocBook project from a template, using runtime input variables
25
+
26
+ - serve
27
+ Starts a local web server on port 3000, serving the content. Supports a -port N to use a different port
28
+
29
+ - stats
30
+ Returns statistics regarding the book you are working on. Supports a -v switch for verbose output
31
+
32
+ - validate
33
+ Validates the book content
34
+
35
+ - bump
36
+ Updates the semantic version number of the current book. If no options are specified, then the default of patch is applied:
37
+ - major - updates the major version of the book. i.e. - 1.4.5 would become 2.0.0
38
+ - minor - updates the minor version of the book. i.e. - 1.4.5 would become 1.5.0
39
+ - patch (default) - updates the patch version of the book. i.e. - 1.4.5 would become 1.4.6
40
+
41
+ - ver
42
+ Returns the version of the current book
43
+
44
+ Example
45
+
46
+ hdoc stats -v
47
+ `;
48
+ console.log(helpText);
49
+ };
50
50
  })();