Skip to content
This repository has been archived by the owner on May 9, 2022. It is now read-only.

Latest commit

 

History

History
30 lines (20 loc) · 1008 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 1008 Bytes

scribe-plugin-smart-lists Build Status

Transforms text bullets into HTML lists

See an example.

Installation

bower install scribe-plugin-smart-lists

Alternatively, you can access the distribution files through GitHub releases.

Usage Example

scribe-plugin-smart-lists is an AMD module:

require(['scribe', 'scribe-plugin-smart-lists'], function (Scribe, scribePluginSmartLists) {
  var scribeElement = document.querySelector('.scribe');
  // Create an instance of Scribe
  var scribe = new Scribe(scribeElement);

  scribe.use(scribePluginSmartLists());
});

You can see a live example here, or view the code here.