Skip to content

Commit ab042d8

Browse files
committed
Initial commit
0 parents  commit ab042d8

File tree

7 files changed

+55
-0
lines changed

7 files changed

+55
-0
lines changed

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
###############
2+
# folder #
3+
###############
4+
/**/DROP/
5+
/**/TEMP/
6+
/**/packages/
7+
/**/bin/
8+
/**/obj/
9+
10+
/_site/**

articles/.attachments/file.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# AttachmentFile

articles/index.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Add your introductions here!

articles/toc.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- name: Introduction
2+
href: index.md

docfx.json

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"build": {
3+
"content": [
4+
{
5+
"files": [
6+
"**/*.md",
7+
"**/*.yml"
8+
],
9+
"exclude": [
10+
"_site/**"
11+
]
12+
}
13+
],
14+
"resource": [
15+
{
16+
"files": [
17+
"**/.attachments/*.txt"
18+
],
19+
"exclude": [
20+
"_site/**"
21+
]
22+
}
23+
],
24+
"output": "_site",
25+
"globalMetadataFiles": [],
26+
"fileMetadataFiles": [],
27+
"template": [
28+
"default",
29+
"modern"
30+
],
31+
"postProcessors": [],
32+
"keepFileLink": false,
33+
"disableGitFeatures": false
34+
}
35+
}

index.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# This is the **HOMEPAGE**.
2+
Refer to [Markdown](http://daringfireball.net/projects/markdown/) for how to write markdown files.
3+
## Quick Start Notes:
4+
1. Add images to the *images* folder if the file is referencing an image.

toc.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
- name: Articles
2+
href: articles/

0 commit comments

Comments
 (0)