|
1 |
| -# PLUGIN_NAME <img align="right" height="100" title="PostHTML logo" src="http://posthtml.github.io/posthtml/logo.svg"> |
| 1 | +<div align="center"> |
| 2 | + <img width="300" title="PostHTML" src="http://posthtml.github.io/posthtml/logo.svg"> |
| 3 | + <h1>PostHTML Components </h1> |
| 4 | + <p>HTML-friendly syntax component with slots, attributes as locals and more!</p> |
| 5 | +</div> |
2 | 6 |
|
3 |
| -[![Actions Status][action]][action-url] |
4 | 7 | [![NPM][npm]][npm-url]
|
5 | 8 | [![Coverage][cover]][cover-badge]
|
6 | 9 | [![XO code style][style]][style-url]
|
7 | 10 |
|
8 |
| -Clone this repo and explain what your plugin do and why thousands of people need it ;) |
9 |
| - |
10 |
| -Before: |
11 |
| -``` html |
12 |
| -<html> |
13 |
| - <body> |
14 |
| - <p class="wow">OMG</p> |
15 |
| - </body> |
16 |
| -</html> |
17 |
| -``` |
18 |
| - |
19 |
| -After: |
20 |
| -``` html |
21 |
| -<svg xmlns="http://www.w3.org/2000/svg"> |
22 |
| - <text class="wow" id="wow_id" fill="#4A83B4" fill-rule="evenodd" font-family="Verdana"> |
23 |
| - OMG |
24 |
| - </text> |
25 |
| -</svg> |
26 |
| -``` |
27 |
| - |
28 | 11 | ## Install
|
29 | 12 |
|
30 |
| -Describe how big guys can install your plugin. |
31 |
| - |
32 | 13 | ```bash
|
33 |
| -npm i PLUGIN_NAME |
| 14 | +npm i -D posthtml-components |
34 | 15 | ```
|
35 | 16 |
|
36 |
| -## Usage |
| 17 | +## Introduction |
37 | 18 |
|
38 |
| -Describe how people can use this plugin. Include info about build systems if it's |
39 |
| -necessary. |
| 19 | +This PostHTML plugin provides an HTML-friendly syntax for write components in your templates. |
| 20 | +If you are familiar with Blade, you will find similar syntax as this plugin was inspired by it. |
| 21 | +See below a basic example, as code is worth a thousand words. |
40 | 22 |
|
41 |
| -``` js |
42 |
| -const fs = require('fs'); |
43 |
| -const posthtml = require('posthtml'); |
44 |
| -const PLUGIN_NAME_CAMEL = require('PLUGIN_NAME'); |
| 23 | +## Basic example |
45 | 24 |
|
46 |
| -posthtml() |
47 |
| - .use(PLUGIN_NAME_CAMEL({ /* options */ })) |
48 |
| - .process(html/*, options */) |
49 |
| - .then(result => fs.writeFileSync('./after.html', result.html)); |
50 |
| -``` |
| 25 | +Create the component: |
51 | 26 |
|
52 |
| -## Options |
53 |
| - |
54 |
| -Describe all features of your plugin with examples of usage. |
| 27 | +``` html |
| 28 | +<!-- src/button.html --> |
| 29 | +<button class="btn btn-primary"> |
| 30 | + <slot></slot> |
| 31 | +</button> |
| 32 | +``` |
55 | 33 |
|
56 |
| -### Feature |
| 34 | +Use the component: |
57 | 35 |
|
58 |
| -Before: |
59 | 36 | ``` html
|
| 37 | +<!-- src/index.html --> |
60 | 38 | <html>
|
61 |
| - <body> |
62 |
| - <p>OMG</p> |
63 |
| - </body> |
| 39 | +<body> |
| 40 | + <x-button>Submit</x-button> |
| 41 | +</body> |
64 | 42 | </html>
|
65 | 43 | ```
|
66 | 44 |
|
67 |
| -Add option: |
68 |
| -``` js |
69 |
| -const fs = require('fs'); |
70 |
| -const posthtml = require('posthtml'); |
71 |
| -const PLUGIN_NAME_CAMEL = require('PLUGIN_NAME'); |
| 45 | +Init PostHTML: |
| 46 | + |
| 47 | +```js |
| 48 | +<!-- index.js --> |
| 49 | +const { readFileSync, writeFileSync } = require('fs') |
72 | 50 |
|
73 |
| -posthtml() |
74 |
| - .use(PLUGIN_NAME_CAMEL({ feature: 'wow' })) |
75 |
| - .process(html/*, options */) |
76 |
| - .then(result => fs.writeFileSync('./after.html', result.html)); |
| 51 | +const posthtml = require('posthtml') |
| 52 | +const components = require('posthtml-components') |
| 53 | + |
| 54 | +posthtml(components({ root: './src' })) |
| 55 | + .process(readFileSync('src/index.html', 'utf8')) |
| 56 | + .then((result) => writeFileSync('dist/index.html', result.html, 'utf8')) |
77 | 57 | ```
|
78 | 58 |
|
79 |
| -After: |
| 59 | +Result: |
| 60 | + |
80 | 61 | ``` html
|
| 62 | +<!-- dist/index.html --> |
81 | 63 | <html>
|
82 |
| - <body> |
83 |
| - <p class="wow">OMG</p> |
84 |
| - </body> |
| 64 | +<body> |
| 65 | + <button class="btn btn-primary">Submit</button> |
| 66 | +</body> |
85 | 67 | </html>
|
86 | 68 | ```
|
87 | 69 |
|
88 |
| -### Contributing |
| 70 | +## Options |
89 | 71 |
|
90 |
| -See [PostHTML Guidelines](https://github.com/posthtml/posthtml/tree/master/docs) and [contribution guide](CONTRIBUTING.md). |
| 72 | +| Option | Default | Description | |
| 73 | +|:------------------------:|:---------------------------------:|:------------------------------------------------------------------------------------------------------------| |
| 74 | +| **root** | `'./'` | String value as root path for components lookup. | |
| 75 | +| **roots** | `''` | Array of additional multi roots path from `options.root`. | |
| 76 | +| **namespaces** | `[]` | Array of namespace's root path, fallback path and custom path for override. | |
| 77 | +| **namespaceSeparator** | `::` | String value for namespace separator to be used with tag name. Example `<x-namespace::button>` | |
| 78 | +| **namespaceFallback** | `false` | Boolean value for use fallback path to defined roots in `options.roots`. | |
| 79 | +| **fileExtension** | `html` | String value for file extension of the components used for retrieve x-tag file. | |
| 80 | +| **tagPrefix** | `x-` | String for tag prefix. | |
| 81 | +| **tagRegExp** | `new RegExp('^x-'), 'i')` | Object for regex used to match x-tag. Set only `options.tagPrefix` to keep default. | |
| 82 | +| **slotTagName** | `slot` | String value for slot tag name. | |
| 83 | +| **fallbackSlotTagName** | `false` | Boolean value used to support posthtml-modules slot `<content>`. | |
| 84 | +| **tagName** | `component` | String value for component tag. | |
| 85 | +| **tagNames** | `[]` | Array of additional component tag. Useful if you are migrating from extend and modules. | |
| 86 | +| **attribute** | `src` | String value for component attribute for set path. | |
| 87 | +| **attributes** | `[]` | Array of additional component path to be used for migrating from extend and modules. | |
| 88 | +| **expressions** | `{}` | Object to configure `posthtml-expressions`. You can pre-set locals or customize the delimiters for example. | |
| 89 | +| **plugins** | `[]` | PostHTML plugins to apply for every parsed components. | |
| 90 | +| **encoding** | `utf8` | String value for the encoding of the component. | |
| 91 | +| **scriptLocalAttribute** | `defaultLocals` | String value for set custom attribute parsed by the plugin to retrieve default locals in the components. | |
| 92 | +| **matcher** | `[]` | Array of object used to match the tags. Useful if you are migrating from extend and modules. | |
| 93 | +| **strict** | `true` | Boolean value for enable or disable throw an exception. | |
| 94 | + |
| 95 | +## Feature |
| 96 | + |
| 97 | +TODO... |
| 98 | + |
| 99 | +## Contributing |
91 | 100 |
|
92 |
| -[action]: https://github.com/USER_NAME/PLUGIN_NAME/workflows/Actions%20Status/badge.svg |
93 |
| -[action-url]: https://github.com/USER_NAME/PLUGIN_NAME/actions?query=workflow%3A%22CI+tests%22 |
| 101 | +See [PostHTML Guidelines](https://github.com/posthtml/posthtml/tree/master/docs) and [contribution guide](CONTRIBUTING.md). |
94 | 102 |
|
95 | 103 | [npm]: https://img.shields.io/npm/v/PLUGIN_NAME.svg
|
96 | 104 | [npm-url]: https://npmjs.com/package/PLUGIN_NAME
|
97 | 105 |
|
98 | 106 | [style]: https://img.shields.io/badge/code_style-XO-5ed9c7.svg
|
99 |
| -[style-url]: https://github.com/xojs/xo |
| 107 | +[style-url]: https://github.com/sindresorhus/xo |
100 | 108 |
|
101 | 109 | [cover]: https://coveralls.io/repos/USER_NAME/PLUGIN_NAME/badge.svg?branch=master
|
102 | 110 | [cover-badge]: https://coveralls.io/r/USER_NAME/PLUGIN_NAME?branch=master
|
0 commit comments