Skip to content

Commit 497b480

Browse files
committed
New Doc Website
1 parent 19a4054 commit 497b480

File tree

14 files changed

+482
-37
lines changed

14 files changed

+482
-37
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Expression Equality Comparer
2+
3+
## Using
4+
5+
## Extends

docfx/articles/ExpressionIterator.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Expression Iterator
2+
3+
## Using
4+
5+
## Extends

docfx/articles/intro.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
# Add your introductions here!
1+
# Introduction to Expression Tree Toolkit
2+
3+
## Why
4+

docfx/articles/toc.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
- name: Introduction
22
href: intro.md
3+
- name: Equality Comparer
4+
href: ExpressionEqualityComparer.md
5+
- name: Iterator
6+
href: ExpressionIterator.md

docfx/docfx.json

Lines changed: 24 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -26,24 +26,23 @@
2626
},
2727
{
2828
"files": [
29-
"lib/**.yml",
30-
"lib/index.md"
31-
]
32-
},
33-
{
34-
"files": [
35-
"articles/**.md",
36-
"articles/**/toc.yml",
37-
"toc.yml",
38-
"*.md"
29+
"docs/**/*.{md,yml}",
30+
"articles/**/*.{md,yml}",
31+
"*.{md,yml}"
3932
]
4033
}
4134
],
4235
"resource": [
4336
{
4437
"files": [
45-
"images/**"
46-
]
38+
"**/images/**",
39+
"**/artifacts/**",
40+
"codesnippet/**",
41+
"langwordmapping/**",
42+
"ExpressionTreeToolkit.svg",
43+
"ExpressionTreeToolkit.ico"
44+
],
45+
"exclude": [ "wwwroot/**", "**/obj/**", "**.meta" ]
4746
}
4847
],
4948
"overwrite": [
@@ -60,30 +59,35 @@
6059
"dest": "_site",
6160
"globalMetadata": {
6261
"_appTitle": "Expression Tree Toolkit Documentation",
63-
"_enableSearch": true
62+
"_appFooter": "<span>Copyright © alecsg77.<br>Generated by <strong>DocFX</strong></span>",
63+
"_enableSearch": true,
64+
"_enableNewTab": true,
65+
"_gitContribute": {
66+
"branch": "dev"
67+
}
6468
},
6569
"globalMetadataFiles": [],
6670
"fileMetadataFiles": [],
6771
"template": [
68-
"statictoc"
72+
"default",
73+
"templates/custom"
6974
],
7075
"sitemap": {
71-
"baseUrl": "https://dotnet.github.io/docfx",
76+
"baseUrl": "https://alecsg77.github.io/ExpressionTreeToolkit",
7277
"priority": 0.1,
7378
"changefreq": "monthly",
7479
"fileOptions": {
75-
"**/api/**.yml": {
76-
"priority": 0.3,
77-
"lastmod": "2001-01-01"
80+
"**/obj/docfx/**.yml": {
81+
"priority": 0.5
7882
}
7983
}
8084
},
81-
"postProcessors": [],
85+
"postProcessors": [ "ExtractSearchIndex" ],
8286
"markdownEngineName": "markdig",
8387
"noLangKeyword": false,
8488
"keepFileLink": false,
8589
"cleanupCacheHistory": false,
8690
"disableGitFeatures": false,
8791
"xrefService": [ "https://xref.docs.microsoft.com/query?uid={uid}" ]
8892
}
89-
}
93+
}

docfx/images/banner.png

11.6 KB
Loading

docfx/index.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
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.
1+
<img src="images/banner.png" alt="alt text" title="Expression Tree Toolkit" class="img-responsive center-block">
2+
3+
[!include[Read Me](../README.md)]

docfx/lib/.gitignore

Lines changed: 0 additions & 5 deletions
This file was deleted.

docfx/lib/index.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

docfx/templates/custom/favicon.ico

87.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)