Skip to content

Releases: ipikuka/remark-ins

v1.1.0

18 Mar 00:30
Compare
Choose a tag to compare

The changes made by @talatkuyuk

  • updated the dependencies
  • added package-lock.json on behalf of npm ci in github actions
  • added npm provenance
  • added a github action for commits and pull requests
  • updated the tsconfig.json
  • added type coverage 100%
  • added test coverage 100%
  • added codecov connection
  • updated the README.md (badges, plugin list, links)
  • added a test util, and updated all the tests
  • extended @types/mdast with the Insert type
  • the regex for matching inserted syntax is updated, and it is more strict now
  • added a second visitor to find insert syntax if it contains other phrasing contents
  • added a third visitor to find empty ins elements
  • updated the README.md

It is more powerful now

As of version ^1.1.0, the remark-ins can handle also the syntax containing other markdown phrases like strong, emphasis, link etc.

++**inserted bold content**++

++_inserted italic content_++

++[inserted link](https://google.com)++

It is more strict now

The double plus signs must be adjacent to the content. Here is an example for bad usage, and cause to not work.

++ text with unwanted space++

++text with unwanted space ++

v1.0.2

27 Dec 21:04
Compare
Choose a tag to compare

Release notes and the changes made by @talatkuyuk

  • refactored the .npmrc file
  • updated the dependencies and fixed the type issues
  • refactored the tsconfig.json
  • updated the README.md
  • fixed the toMatchInlineSnapshot jest method in tests since jest does not support prettier@3 yet

v1.0.1

16 Jun 09:44
Compare
Choose a tag to compare
  • added src directory into files in package.json for supporting source map
  • added the list of the remark packages I have published into README.md

v1.0.0

10 Mar 14:26
Compare
Choose a tag to compare

initial release !