Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/comfortablesoftware/wrapperizer
Atom editor plugin to wrap links and tags
https://github.com/comfortablesoftware/wrapperizer
atom atom-editor atom-package atom-plugin coffeescript plugin
Last synced: 13 days ago
JSON representation
Atom editor plugin to wrap links and tags
- Host: GitHub
- URL: https://github.com/comfortablesoftware/wrapperizer
- Owner: ComfortableSoftware
- License: mit
- Created: 2021-10-17T21:34:11.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-17T22:34:32.000Z (over 3 years ago)
- Last Synced: 2025-02-01T23:14:26.531Z (13 days ago)
- Topics: atom, atom-editor, atom-package, atom-plugin, coffeescript, plugin
- Language: CoffeeScript
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# WRAPPERIZER PACKAGE
- #### Wraps selected text in arbitrary preconfigured text.
- ##### Makes .md and .html links
- ###### LowerCaseFixedText when true lower cases the fixedText before replacing %FT% with it.
- ###### UpperCaseSelectedText when true upper cases selectedText before replacing %ST% with it.
- ###### LinkifyFixedText when true replaces spaces and tabs by dashes and removes all disallowed characters from fixedText before replacing %FT% with it.
- ###### newTextList:
0. "[%ST%](\#%FT%)"
- Wrap a link in the current file.
1. "[%ST%](./fileOne.md\#%FT%)",
- Wrap a link in fileOne.md in the local directory.
- "%ST%" will be replaced with the selected text from the editor unmodified.
- "%FT%" will be replaced by the text which has been processed through the regex in patternList and replacement in replaceList.
- Select text to wrap in a link in an editor buffer.
- Select "Hello there!" alt-ctrl-w, 0 will replace "Hello there!" with "\\[Hello there!\\]\\(#hello-there\\)"
- Select "Hello there!" alt-ctrl-w, 1 will replace "Hello there!" with "\\[Hello there!\\]\\(./fileOne.md#hello-there\\)"
- ##### Works with atomic-management to support per project inserts and wrappings.- ![A screenshot of your package](https://f.cloud.github.com/assets/69169/2290250/c35d867a-a017-11e3-86be-cd7c5bf3ff9b.gif)