hdoc-tools 0.8.37 → 0.8.38

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-build.js CHANGED
@@ -280,6 +280,7 @@
280
280
  linkify: true,
281
281
  typographer: true
282
282
  });
283
+ md.linkify.set({ fuzzyEmail: false, fuzzyLink: false, fuzzyIP: false });
283
284
 
284
285
  // Process Frontmatter tags
285
286
  let frontmatter_content = "";
package/hdoc-validate.js CHANGED
@@ -41,11 +41,6 @@
41
41
  continue;
42
42
  }
43
43
 
44
- // Skip mailto links
45
- if (links[i].startsWith('mailto:')) {
46
- continue;
47
- }
48
-
49
44
  try {
50
45
  await axios.get(links[i], { httpsAgent: agent });
51
46
  messages[htmlFile.relativePath].push(`Link is a valid external URL: ${links[i]}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hdoc-tools",
3
- "version": "0.8.37",
3
+ "version": "0.8.38",
4
4
  "description": "Hornbill HDocBook Development Support Tool",
5
5
  "main": "hdoc.js",
6
6
  "bin": {