Skip to content

Commit 4364944

Browse files
committed
feat: add pdf generator base option
1 parent 486a4b4 commit 4364944

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/steps/processPages.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import {resolveMd2HTML, resolveMd2Md} from '../resolvers';
2727
import {ArgvService, LeadingService, PluginService, SearchService} from '../services';
2828
import {generateStaticMarkup} from '~/pages/document';
2929
import {generateStaticRedirect} from '~/pages/redirect';
30-
import {getDepth, joinSinglePageResults} from '../utils';
30+
import {getDepth, getDepthPath, joinSinglePageResults} from '../utils';
3131
import {getVCSConnector} from '../vcs-connector';
3232
import {VCSConnector} from '../vcs-connector/connector-models';
3333

@@ -125,6 +125,7 @@ async function saveSinglePages(run: Run) {
125125
const toc = run.toc.for(join(relativeTocDir, 'toc.yaml'))[1] as YfmToc;
126126
const lang = run.config.lang ?? Lang.RU;
127127
const langs = run.config.langs.length ? run.config.langs : [lang];
128+
const depth = getDepth(relativeTocDir) + 1;
128129

129130
const pageData = {
130131
data: {
@@ -136,7 +137,8 @@ async function saveSinglePages(run: Run) {
136137
},
137138
router: {
138139
pathname: SINGLE_PAGE_FILENAME,
139-
depth: getDepth(relativeTocDir) + 1,
140+
depth,
141+
base: getDepthPath(depth - 1),
140142
},
141143
lang,
142144
langs,

tests/e2e/__snapshots__/load-custom-resources.spec.ts.snap

+2-2
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ exports[`Allow load custom resources md2html single page with custom resources:
308308
</p>/n
309309
<hr class=\\"yfm-page__delimeter\\">
310310
<p>Lorem
311-
</p>/n","headings":[],"meta":{"style":["_assets/style/test.css"],"script":["_assets/script/test1.js"]},"title":"Documentation"},"router":{"pathname":"single-page.html","depth":2},"lang":"ru","langs":["ru"]};
311+
</p>/n","headings":[],"meta":{"style":["_assets/style/test.css"],"script":["_assets/script/test1.js"]},"title":"Documentation"},"router":{"pathname":"single-page.html","depth":2,"base":"../"},"lang":"ru","langs":["ru"]};
312312
</script>
313313
<script src="single-page-toc.js"
314314
type="application/javascript"
@@ -330,7 +330,7 @@ exports[`Allow load custom resources md2html single page with custom resources:
330330
</html>
331331
`;
332332
333-
exports[`Allow load custom resources md2html single page with custom resources: single-page.json 1`] = `"{"data":{"leading":false,"html":"<p>Lorem</p>/n<hr class=\\"yfm-page__delimeter\\"><p>Lorem</p>/n","headings":[],"meta":{"style":["_assets/style/test.css"],"script":["_assets/script/test1.js"]},"title":"Documentation"},"router":{"pathname":"single-page.html","depth":2},"lang":"ru","langs":["ru"]}"`;
333+
exports[`Allow load custom resources md2html single page with custom resources: single-page.json 1`] = `"{"data":{"leading":false,"html":"<p>Lorem</p>/n<hr class=\\"yfm-page__delimeter\\"><p>Lorem</p>/n","headings":[],"meta":{"style":["_assets/style/test.css"],"script":["_assets/script/test1.js"]},"title":"Documentation"},"router":{"pathname":"single-page.html","depth":2,"base":"../"},"lang":"ru","langs":["ru"]}"`;
334334
335335
exports[`Allow load custom resources md2html single page with custom resources: single-page-toc.js 1`] = `"window.__DATA__.data.toc = {"title":"Documentation","href":"#index","items":[{"name":"Documentation","href":"#page"},{"name":"Config","href":"#project_config"}]};"`;
336336

0 commit comments

Comments
 (0)