From 8ce48f402a05a79f7720635b8f3b892effa7eeb9 Mon Sep 17 00:00:00 2001 From: RieksJ Date: Thu, 29 Oct 2020 08:13:08 +0100 Subject: [PATCH] Cleanup of some leftovers of earlier work that caused errors (now fixed) --- docs/ssi-standards.md | 4 ---- plugins/terminology-parser/index.js | 1 + 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/ssi-standards.md b/docs/ssi-standards.md index 3e36c7e..ab28404 100644 --- a/docs/ssi-standards.md +++ b/docs/ssi-standards.md @@ -3,10 +3,6 @@ id: ssi-standards title: SSI Standards --- - - The purpose of this document is to provide an overview of standards activities for self-sovereign identity (SSI) and their relevance to eSSIF-Lab. ## 1. Introduction diff --git a/plugins/terminology-parser/index.js b/plugins/terminology-parser/index.js index 0b7069e..21740f9 100644 --- a/plugins/terminology-parser/index.js +++ b/plugins/terminology-parser/index.js @@ -58,6 +58,7 @@ async function parser(err, files) { } else { // Iterate through the .md(x) files for(let filepath of files.filter(filepath => filepath != './docs/terminology-plugin-instructions.md')) { + console.log('Filepath =', filepath); let content = ''; try { content = await fs.promises.readFile(filepath, 'utf8') -- GitLab