~dricottone/noticable

ce7dbb51784264263620803b50a7b0f6afe4a543 — Dominic Ricottone 3 years ago fc81796 v0.0.3
Release v0.0.3: Enable HTML in Markdown notes
3 files changed, 12 insertions(+), 12 deletions(-)

M package-lock.json
M package.json
M preload.js
M package-lock.json => package-lock.json +9 -9
@@ 1,11 1,11 @@
{
  "name": "noticable",
  "version": "0.0.2",
  "version": "0.0.3",
  "lockfileVersion": 2,
  "requires": true,
  "packages": {
    "": {
      "version": "0.0.2",
      "version": "0.0.3",
      "license": "GPL-3.0",
      "dependencies": {
        "cash-dom": "^8.1.0",


@@ 13,7 13,7 @@
        "electron-prompt": "^1.6.0",
        "github-markdown-css": "^4.0.0",
        "jquery": "^3.6.0",
        "markdown-it": "^12.1.0",
        "markdown-it": "^12.2.0",
        "monaco-editor": "^0.26.1"
      },
      "devDependencies": {


@@ 2325,9 2325,9 @@
      }
    },
    "node_modules/markdown-it": {
      "version": "12.1.0",
      "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.1.0.tgz",
      "integrity": "sha512-7temG6IFOOxfU0SgzhqR+vr2diuMhyO5uUIEZ3C5NbXhqC9uFUHoU41USYuDFoZRsaY7BEIEei874Z20VMLF6A==",
      "version": "12.2.0",
      "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.2.0.tgz",
      "integrity": "sha512-Wjws+uCrVQRqOoJvze4HCqkKl1AsSh95iFAeQDwnyfxM09divCBSXlDR1uTvyUP3Grzpn4Ru8GeCxYPM8vkCQg==",
      "dependencies": {
        "argparse": "^2.0.1",
        "entities": "~2.1.0",


@@ 5321,9 5321,9 @@
      }
    },
    "markdown-it": {
      "version": "12.1.0",
      "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.1.0.tgz",
      "integrity": "sha512-7temG6IFOOxfU0SgzhqR+vr2diuMhyO5uUIEZ3C5NbXhqC9uFUHoU41USYuDFoZRsaY7BEIEei874Z20VMLF6A==",
      "version": "12.2.0",
      "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-12.2.0.tgz",
      "integrity": "sha512-Wjws+uCrVQRqOoJvze4HCqkKl1AsSh95iFAeQDwnyfxM09divCBSXlDR1uTvyUP3Grzpn4Ru8GeCxYPM8vkCQg==",
      "requires": {
        "argparse": "^2.0.1",
        "entities": "~2.1.0",

M package.json => package.json +2 -2
@@ 5,7 5,7 @@
    "name": "Dominic Ricottone",
    "email": "me@dominic-ricottone.com"
  },
  "version": "0.0.2",
  "version": "0.0.3",
  "license": "GPL-3.0",
  "main": "main.js",
  "scripts": {


@@ 21,7 21,7 @@
    "electron-prompt": "^1.6.0",
    "github-markdown-css": "^4.0.0",
    "jquery": "^3.6.0",
    "markdown-it": "^12.1.0",
    "markdown-it": "^12.2.0",
    "monaco-editor": "^0.26.1"
  }
}

M preload.js => preload.js +1 -1
@@ 8,7 8,7 @@ const { ipcRenderer } = require("electron");
const fs = require("fs");
const os = require("os");
const path = require("path");
const md = require("markdown-it")();
const md = require("markdown-it")({ html: true });
let currentFilename = "";
let currentFileContent = "";