Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 803 Bytes

README.md

File metadata and controls

40 lines (24 loc) · 803 Bytes

Create Link

Source code of Create Link.

Filters

This feature is basically for developers.

You can define a Filter for each format which is applied to the text generated by Create Link. Filters are defined with JavaScript code which takes generated text and returns text.

Name Format Filter
HTML %title% return s + ' ' + (new Date().toJSON().substring(0, 10))

The configuration above gives you following text.

<a href="http://example.com/">Example Domain</a> 2017-03-14

Development

Build

webpack is used for building application code. Run

make watch

to watch the changes and generate js files.

Test

make test