Skip to content

Commit

Permalink
alphabetize imports and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mgc1194 committed Apr 4, 2024
1 parent cac966f commit aca4021
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@code-dot-org/redactable-markdown",
"version": "0.9.4",
"version": "0.10.0",
"description": "",
"main": "dist/main.js",
"bin": {
Expand Down
8 changes: 4 additions & 4 deletions src/redactableMarkdownProcessor.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
const unified = require("unified");
const remarkRehype = require("remark-rehype");
const plugins = require("@code-dot-org/remark-plugins");
const rehypeRaw = require("rehype-raw");
const rehypeSanitize = require("rehype-sanitize");
const rehypeStringify = require("rehype-stringify");
const remarkParse = require("remark-parse");
const remarkRehype = require("remark-rehype");
const remarkStringify = require("remark-stringify");
const plugins = require("@code-dot-org/remark-plugins");
const defaultSanitizationSchema = require("hast-util-sanitize/lib/github");
const unified = require("unified");

const defaultSanitizationSchema = require("hast-util-sanitize/lib/github");
const RedactableProcessor = require("./redactableProcessor");

// create custom sanitization schema as per
Expand Down

0 comments on commit aca4021

Please sign in to comment.