indent-utils
TypeScript icon, indicating that this package has built-in type declarations

1.0.7 • Public • Published

eqdict

npm version

Indented filter utilities, including Showdown extensions / HyperPug filters' maker

Usage

import { createIndentedFilter } from "indent-utils";
const filterFn = createIndentedFilter("x1", (coveredText, attrs) => {
  return customFn(coveredText, attrs)
});
const showdownX1Extension = {
  type: "lang",
  filter: filterFn
};

Example matched cases,

^^x1 hello
^^x1(source="github") hello
![](^^x1(source="github") hello^^)
^^x1(source="github").
  thank you
    very
 
  much

For more test cases, see /tests/index.spec.yaml

Usage on the browser

<script src="https://unpkg.com/indent-utils@:version/umd/index.min.js"></script>
<script>
const filterFn = createIndentedFilter("x1", (coveredText, attrs) => {
  return customFn(coveredText, attrs)
})
const showdownX1Extension = {
  type: "lang",
  filter: filterFn
}
</script> 

Package Sidebar

Install

npm i indent-utils

Weekly Downloads

11

Version

1.0.7

License

MIT

Unpacked Size

32.7 kB

Total Files

15

Last publish

Collaborators

  • patarapolw