├── Configuration ├── NodeTypes.yaml └── Settings.yaml ├── LICENSE ├── README.md ├── Resources ├── Private │ ├── Fusion │ │ └── Root.fusion │ ├── JavaScript │ │ └── AnchorView │ │ │ ├── .gitignore │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── AnchorView.js │ │ │ ├── index.js │ │ │ └── manifest.js │ │ │ └── yarn.lock │ └── Translations │ │ ├── de │ │ ├── Main.xlf │ │ └── NodeTypes │ │ │ └── AnchorMixin.xlf │ │ └── en │ │ ├── Main.xlf │ │ └── NodeTypes │ │ └── AnchorMixin.xlf └── Public │ └── JavaScript │ ├── AnchorView │ ├── Plugin.js │ └── Plugin.js.map │ └── Inspector │ └── Views │ ├── AnchorView.html │ └── AnchorView.js ├── SECURITY.md └── composer.json /Configuration/NodeTypes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/Configuration/NodeTypes.yaml -------------------------------------------------------------------------------- /Configuration/Settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/Configuration/Settings.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Private/Fusion/Root.fusion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/Resources/Private/Fusion/Root.fusion -------------------------------------------------------------------------------- /Resources/Private/JavaScript/AnchorView/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Resources/Private/JavaScript/AnchorView/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/Resources/Private/JavaScript/AnchorView/package.json -------------------------------------------------------------------------------- /Resources/Private/JavaScript/AnchorView/src/AnchorView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/Resources/Private/JavaScript/AnchorView/src/AnchorView.js -------------------------------------------------------------------------------- /Resources/Private/JavaScript/AnchorView/src/index.js: -------------------------------------------------------------------------------- 1 | require('./manifest'); 2 | -------------------------------------------------------------------------------- /Resources/Private/JavaScript/AnchorView/src/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/Resources/Private/JavaScript/AnchorView/src/manifest.js -------------------------------------------------------------------------------- /Resources/Private/JavaScript/AnchorView/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/Resources/Private/JavaScript/AnchorView/yarn.lock -------------------------------------------------------------------------------- /Resources/Private/Translations/de/Main.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/Resources/Private/Translations/de/Main.xlf -------------------------------------------------------------------------------- /Resources/Private/Translations/de/NodeTypes/AnchorMixin.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/Resources/Private/Translations/de/NodeTypes/AnchorMixin.xlf -------------------------------------------------------------------------------- /Resources/Private/Translations/en/Main.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/Resources/Private/Translations/en/Main.xlf -------------------------------------------------------------------------------- /Resources/Private/Translations/en/NodeTypes/AnchorMixin.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/Resources/Private/Translations/en/NodeTypes/AnchorMixin.xlf -------------------------------------------------------------------------------- /Resources/Public/JavaScript/AnchorView/Plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/Resources/Public/JavaScript/AnchorView/Plugin.js -------------------------------------------------------------------------------- /Resources/Public/JavaScript/AnchorView/Plugin.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/Resources/Public/JavaScript/AnchorView/Plugin.js.map -------------------------------------------------------------------------------- /Resources/Public/JavaScript/Inspector/Views/AnchorView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/Resources/Public/JavaScript/Inspector/Views/AnchorView.html -------------------------------------------------------------------------------- /Resources/Public/JavaScript/Inspector/Views/AnchorView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/Resources/Public/JavaScript/Inspector/Views/AnchorView.js -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/SECURITY.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flownative/neos-anchorlinks/HEAD/composer.json --------------------------------------------------------------------------------