Skip to content

Commit

Permalink
Fix #112
Browse files Browse the repository at this point in the history
  • Loading branch information
mgmeyers committed May 27, 2021
1 parent 091338c commit aebff29
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -20016,7 +20016,7 @@ function mdToSettings(boardMd) {
}
function mdToBoard(boardMd, view) {
const settings = mdToSettings(boardMd);
const lines = boardMd.split(newLineRegex);
const lines = boardMd.replace(frontmatterRegEx, '').split(newLineRegex);
const lanes = [];
const archive = [];
let haveSeenArchiveMarker = false;
Expand Down
2 changes: 1 addition & 1 deletion dist/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-kanban",
"name": "Kanban",
"version": "0.3.10",
"version": "0.3.11",
"minAppVersion": "0.11.13",
"description": "Create markdown-backed Kanban boards in Obsidian.",
"author": "mgmeyers",
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-kanban",
"name": "Kanban",
"version": "0.3.10",
"version": "0.3.11",
"minAppVersion": "0.11.13",
"description": "Create markdown-backed Kanban boards in Obsidian.",
"author": "mgmeyers",
Expand Down
2 changes: 1 addition & 1 deletion src/parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export function mdToSettings(boardMd: string): KanbanSettings {

export function mdToBoard(boardMd: string, view: KanbanView): Board {
const settings = mdToSettings(boardMd);
const lines = boardMd.split(newLineRegex);
const lines = boardMd.replace(frontmatterRegEx, '').split(newLineRegex);
const lanes: Lane[] = [];
const archive: Item[] = [];

Expand Down

0 comments on commit aebff29

Please sign in to comment.