Skip to content

Commit d190e65

Browse files
committed
docs: added breadcrumb titles
1 parent a981564 commit d190e65

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

docs.wrm/index.wrm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_section: Documentation (BETA) @<about-home>
1+
_section: Documentation (BETA) @<about-home> @nav<Documentation>
22

33
**NOTE:** This documentation is for the **beta branch** (i.e. ``v6-beta-exports``), which
44
is still undergoing minor changes.

src.ts/_admin/utils/git.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,12 @@ export async function getModifiedTime(filename: string): Promise<null | number>
2424
if (!result.ok) { throw new Error(`git log error`); }
2525

2626
let log = result.stdout.trim();
27-
console.log("LL", log);
2827
if (!log) { return null; }
2928

3029
for (let line of log.split("\n")) {
3130
line = line.trim();
32-
console.log("L", line);
3331
if (!line) { break; }
3432
const match = line.match(/^date:\s+(.*)$/i);
35-
console.log("M", match);
3633
if (match) {
3734
return (new Date(match[1].trim())).getTime();;
3835
}

src.ts/_version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version: string = "6.0.0-beta-exports.8";
1+
export const version: string = "6.0.0-beta-exports.9";

src.ts/abi/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
* Explain about ABI here...
33
*
44
* @_section api/abi:Application Binary Interface [abi]
5+
* @_navTitle: ABI
56
*/
67

78

src.ts/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* functions, classes and types offered by the Ethers library.
44
*
55
* @_section: api:API Specification [about-api]
6+
* @_navTitle: API
67
*/
78
import * as ethers from "./ethers.js";
89

0 commit comments

Comments
 (0)