A minimal Scribe plugin that converts newlines in pasted plain text to HTML line breaks (<br>). It is designed for the Scribe rich text editor and simply replaces newline characters with <br> tags when pasting plain text. Version 0.1.1 is the latest and only release. There has been no active development since its initial release, and it is part of a legacy ecosystem (Scribe uses Bower, not npm). This plugin has been effectively abandoned; there are no maintainers or updates.
npm install scribe-plugin-formatter-plain-text-convert-new-lines-to-htmlNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to initialize Scribe and use the plugin to convert newlines to <br> tags.
Migrate to a modern rich text editor like Quill, Slate, or ProseMirror.
Ensure no other plain text formatters are applied simultaneously; chain formatters if needed.
Use additional plugins or custom logic to handle paragraph breaking.
Use Bower to install: bower install scribe-plugin-formatter-plain-text-convert-new-lines-to-html
Use const plugin = require('...'); scribe.use(plugin()); instead of scribe.use(plugin);