@peaceroad/markdown-it-strong-ja 0.3.0 → 0.3.1

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/index.js CHANGED
@@ -379,7 +379,7 @@ const strongJa = (state, silent) => {
379
379
  setToken(state, inlines)
380
380
 
381
381
  //console.log('state.pos: ' + state.pos + ', inlines[inlines.length - 1].e + 1: ' + (inlines[inlines.length - 1].e + 1) + ', max: ' + max)
382
- state.pos = inlines[inlines.length - 1].e + 1
382
+ state.pos = max + 1
383
383
  return true
384
384
  }
385
385
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@peaceroad/markdown-it-strong-ja",
3
3
  "description": "This is a plugin for markdown-it. It is an alternative to the standard `**` (strong) and `*` (em) processing. It also processes strings that cannot be converted by the standard.",
4
- "version": "0.3.0",
4
+ "version": "0.3.1",
5
5
  "main": "index.js",
6
6
  "type": "module",
7
7
  "scripts": {
@@ -1,5 +0,0 @@
1
- {
2
- "cSpell.ignoreWords": [
3
- "inlines"
4
- ]
5
- }