ember-repl 4.0.0 → 4.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/compile/formats.ts +2 -0
- package/src/compile/index.ts +1 -0
package/package.json
CHANGED
package/src/compile/formats.ts
CHANGED
|
@@ -90,6 +90,7 @@ export async function compileMD(
|
|
|
90
90
|
importMap?: EvalImportMap;
|
|
91
91
|
topLevelScope?: ScopeMap;
|
|
92
92
|
remarkPlugins?: UnifiedPlugin[];
|
|
93
|
+
rehypePlugins?: UnifiedPlugin[];
|
|
93
94
|
CopyComponent?: string;
|
|
94
95
|
ShadowComponent?: string;
|
|
95
96
|
}
|
|
@@ -114,6 +115,7 @@ export async function compileMD(
|
|
|
114
115
|
CopyComponent: options?.CopyComponent,
|
|
115
116
|
ShadowComponent: options?.ShadowComponent,
|
|
116
117
|
remarkPlugins: options?.remarkPlugins,
|
|
118
|
+
rehypePlugins: options?.rehypePlugins,
|
|
117
119
|
});
|
|
118
120
|
|
|
119
121
|
rootTemplate = templateOnlyGlimdown;
|
package/src/compile/index.ts
CHANGED
|
@@ -29,6 +29,7 @@ const SUPPORTED_FORMATS = ['glimdown', 'gjs', 'hbs'];
|
|
|
29
29
|
interface GlimdownOptions extends Scope, Events {
|
|
30
30
|
format: 'glimdown';
|
|
31
31
|
remarkPlugins?: UnifiedPlugin[];
|
|
32
|
+
rehypePlugins?: UnifiedPlugin[];
|
|
32
33
|
CopyComponent?: string;
|
|
33
34
|
ShadowComponent?: string;
|
|
34
35
|
topLevelScope?: ScopeMap;
|