Skip to content

Commit db67b78

Browse files
committed
feat(docs): outline core articles
1 parent d5632ad commit db67b78

9 files changed

Lines changed: 64 additions & 0 deletions

File tree

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# {{ NgDocPage.title }}
2+
3+
Some content goes here.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { NgDocPage } from '@ng-doc/core';
2+
3+
import CoreCategory from '../ng-doc.category';
4+
5+
const TypeSafeProvidingPage: NgDocPage = {
6+
category: CoreCategory,
7+
title: `Exceptions`,
8+
mdFile: './index.md',
9+
};
10+
11+
export default TypeSafeProvidingPage;
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { NgDocCategory } from '@ng-doc/core';
2+
3+
const CoreCategory: NgDocCategory = {
4+
title: 'Core',
5+
};
6+
7+
export default CoreCategory;
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# {{ NgDocPage.title }}
2+
3+
Some content goes here.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { NgDocPage } from '@ng-doc/core';
2+
3+
import CoreCategory from '../ng-doc.category';
4+
5+
const TypeSafeProvidingPage: NgDocPage = {
6+
category: CoreCategory,
7+
title: `Overview`,
8+
mdFile: './index.md',
9+
order: 1,
10+
};
11+
12+
export default TypeSafeProvidingPage;
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# {{ NgDocPage.title }}
2+
3+
Some content goes here.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { NgDocPage } from '@ng-doc/core';
2+
3+
import CoreCategory from '../ng-doc.category';
4+
5+
const TypeSafeProvidingPage: NgDocPage = {
6+
category: CoreCategory,
7+
title: `Type Container`,
8+
mdFile: './index.md',
9+
};
10+
11+
export default TypeSafeProvidingPage;
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# {{ NgDocPage.title }}
2+
3+
Some content goes here.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { NgDocPage } from '@ng-doc/core';
2+
3+
import CoreCategory from '../ng-doc.category';
4+
5+
const TypeSafeProvidingPage: NgDocPage = {
6+
category: CoreCategory,
7+
title: `Type-safe Providing`,
8+
mdFile: './index.md',
9+
};
10+
11+
export default TypeSafeProvidingPage;

0 commit comments

Comments
 (0)