├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── Text-Magic.sketchplugin └── Contents │ └── Sketch │ ├── manifest.json │ └── split-text-to-layers.cocoascript └── docs └── split-text-to-layers.gif /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Text Magic - CHANGELOG 2 | 3 | ## v1.0.0 4 | 5 | * ADD: Split text to layers 6 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinci/Text-Magic/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinci/Text-Magic/HEAD/README.md -------------------------------------------------------------------------------- /Text-Magic.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinci/Text-Magic/HEAD/Text-Magic.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /Text-Magic.sketchplugin/Contents/Sketch/split-text-to-layers.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinci/Text-Magic/HEAD/Text-Magic.sketchplugin/Contents/Sketch/split-text-to-layers.cocoascript -------------------------------------------------------------------------------- /docs/split-text-to-layers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tinci/Text-Magic/HEAD/docs/split-text-to-layers.gif --------------------------------------------------------------------------------