Skip to content

Commit 208519b

Browse files
authored
rename tokenizerOptions as options (#33)
1 parent b6d5192 commit 208519b

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

src/loader.js

+9-5
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ async function load(source) {
5252
dir, // Root directory from Next.js (contains next.config.js)
5353
mode = 'static',
5454
schemaPath = DEFAULT_SCHEMA_PATH,
55-
tokenizerOptions: {slots = false, ...tokenizerOptions} = {
55+
options: {slots = false, ...options} = {
5656
allowComments: true,
5757
},
5858
appDir = false,
5959
} = this.getOptions() || {};
6060

61-
const tokenizer = new Markdoc.Tokenizer(tokenizerOptions);
61+
const tokenizer = new Markdoc.Tokenizer(options);
6262

6363
const schemaDir = path.resolve(dir, schemaPath || DEFAULT_SCHEMA_PATH);
6464
const tokens = tokenizer.tokenize(source);
@@ -134,7 +134,7 @@ import {getSchema, defaultObject} from '${normalize(
134134
${schemaCode}
135135
136136
const tokenizer = new Markdoc.Tokenizer(${
137-
tokenizerOptions ? JSON.stringify(tokenizerOptions) : ''
137+
options ? JSON.stringify(options) : ''
138138
});
139139
140140
/**
@@ -195,13 +195,17 @@ async function getMarkdocData(context = {}) {
195195
);
196196
}
197197
198-
${appDir ? '' : `export async function ${dataFetchingFunction}(context) {
198+
${
199+
appDir
200+
? ''
201+
: `export async function ${dataFetchingFunction}(context) {
199202
return {
200203
props: {
201204
markdoc: await getMarkdocData(context),
202205
},
203206
};
204-
}`}
207+
}`
208+
}
205209
206210
export default${appDir ? ' async' : ''} function MarkdocComponent(props) {
207211
const markdoc = ${appDir ? 'await getMarkdocData()' : 'props.markdoc'};

0 commit comments

Comments
 (0)