Skip to content
This repository has been archived by the owner on May 12, 2023. It is now read-only.

Commit

Permalink
ol can now have 'start' attr
Browse files Browse the repository at this point in the history
  • Loading branch information
eugene-f02 committed Sep 16, 2022
1 parent 3c67f5c commit c2464ec
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions editormd.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
* Editor.md
*
* @file editormd.js
* @version v1.7.10
* @version v1.7.11
* @description Open source online markdown editor.
* @license MIT License
* @author Pandao
* {@link https://github.com/pandao/editor.md}
* @updateTime 2022-09-09
* @updateTime 2022-09-16
*/

;(function(factory) {
Expand Down Expand Up @@ -59,7 +59,7 @@
};

editormd.title = editormd.$name = "Editor.md";
editormd.version = "1.7.10";
editormd.version = "1.7.11";
editormd.homePage = "https://pandao.github.io/editor.md/";
editormd.classPrefix = "editormd-";

Expand Down
2 changes: 1 addition & 1 deletion lib/xss.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function getDefaultWhiteList() {
li: ["style", "class"],
mark: ["style", "class"],
nav: ["style", "class"],
ol: ["style", "class"],
ol: ["style", "class", "start"],
p: ["style", "class"],
pre: ["style", "class"],
s: ["style", "class"],
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ibm-skills-network/editor.md",
"version": "1.7.10",
"version": "1.7.11",
"description": "Open source online markdown editor.",
"directories": {
"doc": "docs",
Expand Down
2 changes: 1 addition & 1 deletion src/editormd.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
};

editormd.title = editormd.$name = "Editor.md";
editormd.version = "1.7.10";
editormd.version = "1.7.11";
editormd.homePage = "https://pandao.github.io/editor.md/";
editormd.classPrefix = "editormd-";

Expand Down

0 comments on commit c2464ec

Please sign in to comment.