An open API service indexing awesome lists of open source software.

https://github.com/harttle/liquidjs-section-tags

liquidjs plugin for theme sections: section, javascript, schema, stylesheet
https://github.com/harttle/liquidjs-section-tags

liquidjs section theme

Last synced: about 2 months ago
JSON representation

liquidjs plugin for theme sections: section, javascript, schema, stylesheet

Awesome Lists containing this project

README

          

# liquidjs-section-tags (WIP)
liquidjs plugin for color filters, compatible with [shopify color filters](https://help.shopify.com/en/themes/liquid/filters/theme-sections)

## Usage

```bash
npm i liquidjs-section-tags
```

```javascript
import Liquid from 'liquidjs'
import { liquidSectionTags } from '../src/index.ts'

const liquid = new Liquid({ extname: '.liquid' })
liquid.plugin(liquidSectionTags({
root: resolve(__dirname, './stub/sections')
}))

const html = await liquid.parseAndRender('{{ section "header" }}')
```

## Contribution Guide

Any help will be appreciated.