@@ -113,17 +113,17 @@ The `customElements.define()` will also be included.
113113
114114``` javascript
115115// For highlighting, `highlight.js/lib/common` will be used.
116- import ' html-code-block-element' ;
116+ import ' @heppokofrontend/ html-code-block-element' ;
117117// For highlighting, `highlight.js` will be used.
118- import ' html-code-block-element/dist/index.all' ;
118+ import ' @heppokofrontend/ html-code-block-element/dist/index.all' ;
119119// For highlighting, `highlight.js/lib/code` will be used.
120- import ' html-code-block-element/dist/index.core' ;
120+ import ' @heppokofrontend/ html-code-block-element/dist/index.core' ;
121121```
122122
123123If you are using purely constructors:
124124
125125``` javascript
126- import HTMLCodeBlockElement from ' html-code-block-element/dist/class/HTMLCodeBlockElement' ;
126+ import HTMLCodeBlockElement from ' @heppokofrontend/ html-code-block-element/dist/class/HTMLCodeBlockElement' ;
127127```
128128
129129#### Use as constructor
@@ -134,8 +134,8 @@ Manual setup:
134134// 1. Import
135135import hljs from ' highlight.js/lib/core' ;
136136import javascript from ' highlight.js/lib/languages/javascript' ;
137- import HTMLCodeBlockElement from ' html-code-block-element/dist/class/HTMLCodeBlockElement' ;
138- // or import { HTMLCodeBlockElement } from 'html-code-block-element';
137+ import HTMLCodeBlockElement from ' @heppokofrontend/ html-code-block-element/dist/class/HTMLCodeBlockElement' ;
138+ // or import { HTMLCodeBlockElement } from '@heppokofrontend/ html-code-block-element';
139139
140140// Support JavaScript
141141hljs .registerLanguage (' javascript' , javascript);
0 commit comments