@t8/docsgen 0.2.21 → 0.2.23
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/dist/bin.js +1 -1
- package/dist/css/code.css +8 -0
- package/dist/css/section.css +1 -1
- package/package.json +1 -1
- package/src/bin/setContent.ts +1 -1
- package/src/css/code.css +8 -0
- package/src/css/section.css +1 -1
package/dist/bin.js
CHANGED
|
@@ -817,7 +817,7 @@ ${getInjectedContent(ctx, "redirect", "body")}
|
|
|
817
817
|
<h1>${getTitle(ctx, { withPackageURL: true })}</h1>
|
|
818
818
|
${content}
|
|
819
819
|
|
|
820
|
-
<p class="
|
|
820
|
+
<p class="pagenav">
|
|
821
821
|
<span class="prev">
|
|
822
822
|
<span class="icon">\u2190</span>
|
|
823
823
|
${nav[i - 1]?.id ? `<a href="${root}${contentDir}/${nav[i - 1]?.id}">${nav[i - 1]?.title}</a>` : `<a href="${root}">Intro</a>`}
|
package/dist/css/code.css
CHANGED
package/dist/css/section.css
CHANGED
package/package.json
CHANGED
package/src/bin/setContent.ts
CHANGED
|
@@ -183,7 +183,7 @@ ${getInjectedContent(ctx, "redirect", "body")}
|
|
|
183
183
|
<h1>${getTitle(ctx, { withPackageURL: true })}</h1>
|
|
184
184
|
${content}
|
|
185
185
|
|
|
186
|
-
<p class="
|
|
186
|
+
<p class="pagenav">
|
|
187
187
|
<span class="prev">
|
|
188
188
|
<span class="icon">←</span>
|
|
189
189
|
${nav[i - 1]?.id ? `<a href="${root}${contentDir}/${nav[i - 1]?.id}">${nav[i - 1]?.title}</a>` : `<a href="${root}">Intro</a>`}
|
package/src/css/code.css
CHANGED
package/src/css/section.css
CHANGED