@@ -113,17 +113,17 @@ The `customElements.define()` will also be included.
113
113
114
114
``` javascript
115
115
// For highlighting, `highlight.js/lib/common` will be used.
116
- import ' html-code-block-element' ;
116
+ import ' @heppokofrontend/ html-code-block-element' ;
117
117
// 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' ;
119
119
// 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' ;
121
121
```
122
122
123
123
If you are using purely constructors:
124
124
125
125
``` javascript
126
- import HTMLCodeBlockElement from ' html-code-block-element/dist/class/HTMLCodeBlockElement' ;
126
+ import HTMLCodeBlockElement from ' @heppokofrontend/ html-code-block-element/dist/class/HTMLCodeBlockElement' ;
127
127
```
128
128
129
129
#### Use as constructor
@@ -134,8 +134,8 @@ Manual setup:
134
134
// 1. Import
135
135
import hljs from ' highlight.js/lib/core' ;
136
136
import 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';
139
139
140
140
// Support JavaScript
141
141
hljs .registerLanguage (' javascript' , javascript);
0 commit comments