npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@cnsumanth/ckeditor5-internalpagelink-plugin

v0.0.2

Published

A generic ckeditor plugin to create link between the pages containing.

Downloads

4

Readme

ckeditor5-internallink-plugin

A generic ckeditor plugin to create custom html tags containing an identifier to a referenced item. The referencable items are found by an autocomplete input.

Overview

This plugin has the same features as the default link plugin except that it does not create regular link tags.

alt text

The HTML-Tags of this plugin are looking as following:

<internallink internallinkid="123">some text</internallink>

alt text

Features

  • Create and edit links
  • Remove links
  • Configurable autocomplete to find the referenceable item
  • Show a label (title) instead of the item id
  • Open the referenced item in a new tab
  • If text is marked the link will be added to it. Otherwise the item title with a link will be added to the text.
  • Configurable webservice urls to get the required data
  • Test mode to test the plugin without having to implement a webservice

How to use

To be able to use this plugin you need a custom build of ckeditor.

Further instructions can be found here: https://ckeditor.com/docs/ckeditor5/latest/builds/guides/integration/installing-plugins.html

Add the NPM-Package (https://www.npmjs.com/package/@samhammer/ckeditor5-internallink-plugin) by running one of the following commands (depending on your build environment):

yarn add @samhammer/ckeditor5-internallink-plugin
npm i @samhammer/ckeditor5-internallink-plugin

e.g.: https://github.com/SamhammerAG/ssp-ckeditor5-build-inline

Note: We prefer yarn so it is only testet with this build tool.

Configuration

Configuration flags:

| Flag name | Description | Example | | --- | --- | --- | | testmode | If set to true the plugin can be tested without autocompleteurl and titleurl | true or false | | autocompleteurl | Configure a json webservice that returns the autocomplete suggestions. The placeholder {searchTerm} is replaced by the search term that is entered to the autocomplete textbox. | http://www.example.com/autocomplete?term={searchTerm} | | titleurl | Configure a json webservice that returns the title for a referenced item. This service is called on editing an existing link. The placeholder {internalLinkId} is replaced by the id of the referenced item. | http://www.example.com/gettitle?itemid={internalLinkId} | | previewurl | The url that is used to open a preview of the referenced item in a new tab. The placeholder {internalLinkId} is replaced by the id of the referenced item. | http://www.google.de?q={internalLinkId} |

Example:

InlineEditor
	.create( editorElement, {
		internallink: {
			testmode: false,
			autocompleteurl: '',
			titleurl: '',
			previewurl: ''
		}
	} )
	.then( ... )
	.catch( ... );

Webservice response data format

This plugin requires webservices that are returning json data. We are using axios to do HTTP-GET requests.

Autocomplete response

[
    { label:  'Text1', value:  '1' },
    { label:  'Text2', value:  '2' }
]

Get title response

Returns a string with the title

How to publish

For publishing an npm account that is referenced to the organization is required.

See the following how to:

https://yarnpkg.com/en/docs/publishing-a-package

https://docs.npmjs.com/getting-started/publishing-npm-packages

If everything is configured correctly just count up the version number in our package.json and execute one of the following commands:

yarn publish
npm publish --access public

License

ckeditor5-internallink-plugin is released under the MIT License. See LICENSE file for details.