goblin-gadgets 3.2.1 → 3.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "goblin-gadgets",
3
- "version": "3.2.1",
3
+ "version": "3.2.2",
4
4
  "description": "Gadgets library",
5
5
  "main": "./builders/builders.js",
6
6
  "scripts": {
@@ -20,7 +20,8 @@
20
20
  "xcraft-core-utils": "^4.0.0",
21
21
  "goblin-nabu": "^2.0.0",
22
22
  "goblin-toolbox": "^1.0.0",
23
- "remark-gfm": "^3.0.1"
23
+ "remark-gfm": "^3.0.1",
24
+ "remark-supersub": "^1.0.0"
24
25
  },
25
26
  "devDependencies": {
26
27
  "@fortawesome/react-fontawesome": "^0.1.9",
@@ -3,6 +3,7 @@ import React from 'react';
3
3
  import Widget from 'goblin-laboratory/widgets/widget';
4
4
  import ReactMarkdown from 'react-markdown';
5
5
  import remarkGfm from 'remark-gfm';
6
+ import remarkSupersub from 'remark-supersub';
6
7
  import * as styles from './styles';
7
8
 
8
9
  /******************************************************************************/
@@ -18,7 +19,7 @@ export default class Markdown extends Widget {
18
19
  return (
19
20
  <ReactMarkdown
20
21
  className={this.styles.classNames.markdown}
21
- remarkPlugins={[remarkGfm]}
22
+ remarkPlugins={[remarkGfm, remarkSupersub]}
22
23
  {...rest}
23
24
  >
24
25
  {source}