1.0.0 • Published 3 years ago

@ermish/parcel-transformer-shuji v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

parcel-plugin-shuji

STILL IN ACTIVE DEVELOPMENT!

Parcel plugin for the Shuji markdown to react jsx converter

Install the parcel plugin

yarn add --dev parcel-plugin-shuji
or
npm install --dev parcel-plugin-shuji

Create a .parcelrc file or update your existing one to integrate the shuji transformer plugin:

{
  "extends": ["@parcel/config-default"],
  "transformers": {
    "*.md": ["parcel-transformer-shuji"]
  }
}
  • Using "extends": ["@parcel/config-default"], will make sure everything else will run normally. You can scope what files/folder shuji runs by changing the "*.md" portion.
  • Parcel will automatically look for .md files in the default ./markdown folder and compile them into the ./jsxMarkdown folder.

 

Config options

You can configure several options by adding a shuji.config.json or .shujirc.json file in your root directory and parcel will automatically load it. See options here

 

What is Shuji?

Check out Shuji for more details!