Skip to content
Snippets Groups Projects
Verified Commit 28e10654 authored by Isabella Skořepová's avatar Isabella Skořepová
Browse files

Allow arbitrary metadata separator

Separator is any character sequence from start of file to first newline.

For example:
    ```
    title = "Whatever"
    ```
    # Hello
is now possible
parent 4ba9d437
No related branches found
No related tags found
No related merge requests found
...@@ -5,16 +5,15 @@ var jsesc = require('jsesc') ...@@ -5,16 +5,15 @@ var jsesc = require('jsesc')
var readPageWorker = function(content, obj) { var readPageWorker = function(content, obj) {
if(content === undefined) throw new Error('content is undefined'); if(content === undefined) throw new Error('content is undefined');
var head = content.substring(0,4) var headLength = content.indexOf('\n')+1;
if(head !== '+++\n') var head = content.substring(0,headLength)
throw new Error('Failed to parse file '+obj.filename+':\n'+ content = content.substring(headLength);
'Wrong header (expected "+++\\n" got "'+jsesc(head)+'")') var fmEnd = content.indexOf(head);
content = content.substring(4);
var fmEnd = content.indexOf('+++\n');
if(fmEnd < 0) { if(fmEnd < 0) {
console.log(jsesc(content)); console.log(jsesc(content));
throw new Error('Cannot find terminating +++\n in file '+obj.filename); throw new Error('Cannot find terminating '+
head.substring(0,headLength-1)+
'\n in file '+obj.filename);
} }
obj.content = content.substring(fmEnd+4); obj.content = content.substring(fmEnd+4);
try { try {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment