Skip to content

Commit 26961d1

Browse files
Merge pull request #75 from textkernel/fix-docs
Fix Docs
2 parents e4440ce + c494139 commit 26961d1

15 files changed

Lines changed: 114 additions & 698 deletions

File tree

docfx/.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,6 @@
77
/**/bin/
88
/**/obj/
99
_exported_templates
10-
_site
10+
_site
11+
*.yml
12+
.manifest

docfx/docfx.json

Lines changed: 17 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -3,30 +3,18 @@
33
{
44
"src": [
55
{
6-
"files": [
7-
"**/Textkernel.Tx.SDK/**.csproj"
8-
],
9-
"src": "../src"
6+
"files": ["**/Textkernel.Tx.SDK/**.csproj"],
7+
"src": "../src"
108
}
119
],
12-
"dest": "sdk",
13-
"disableGitFeatures": false,
14-
"disableDefaultFilter": false
10+
"dest": ".",
11+
"namespaceLayout": "Nested"
1512
}
1613
],
1714
"build": {
1815
"content": [
1916
{
20-
"files": [
21-
"sdk/**.yml",
22-
"sdk/index.md"
23-
]
24-
},
25-
{
26-
"files": [
27-
"toc.yml",
28-
"*.md"
29-
]
17+
"files": "**/*.{md,yml}"
3018
}
3119
],
3220
"resource": [
@@ -36,25 +24,22 @@
3624
]
3725
}
3826
],
39-
"overwrite": [
40-
{
41-
"files": [
42-
"apidoc/**.md"
43-
],
44-
"exclude": [
45-
"obj/**",
46-
"_site/**"
47-
]
48-
}
49-
],
5027
"dest": "_site",
51-
"globalMetadataFiles": [],
52-
"fileMetadataFiles": [],
28+
"globalMetadata": {
29+
"_disableContribution": "true",
30+
"_appFaviconPath": "images/favicon.svg",
31+
"_appLogoPath": "images/logo.png",
32+
"_appTitle": "Textkernel SDK",
33+
"_appName": "Textkernel Tx Platform .NET SDK",
34+
"_enableSearch": true,
35+
"_disableToc": false,
36+
"_disableAffix": false,
37+
"_disableNavbar": false
38+
},
5339
"template": [
5440
"default",
55-
"templates/darkfx"
41+
"modern"
5642
],
57-
"postProcessors": [],
5843
"markdownEngineName": "markdig",
5944
"noLangKeyword": false,
6045
"keepFileLink": false,

docfx/images/favicon.ico

-14.7 KB
Binary file not shown.

docfx/images/favicon.svg

Lines changed: 65 additions & 0 deletions
Loading

docfx/images/logo.png

1.82 KB
Loading

docfx/index.md

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,31 @@
1-
# tx-dotnet
2-
Return to the project main page on GitHub [here][gh-url]
1+
# Textkernel Tx .NET SDK Documentation
2+
This is the auto-generated (by [DocFX](https://dotnet.github.io/docfx/)) documentation for the SDK codebase.
3+
If you were looking for best-practices, transaction costs, or other API documentation, you
4+
can find that [here](https://developer.textkernel.com/tx-platform/v10/overview/).
5+
6+
You can also go back to the [GitHub project page](https://github.com/textkernel/tx-dotnet) for more usage information and examples.
7+
8+
## Basics
9+
- @"Textkernel.Tx.TxClient" - the core class of the SDK. It is used to make all of the API calls.
10+
- @"Textkernel.Tx.DataCenter" - used to point the @"Textkernel.Tx.TxClient" at the correct data center for your account.
11+
- @"Textkernel.Tx.TxException" - the @"Textkernel.Tx.TxClient" will throw these during normal operations, for example, when you try to parse a resume that is a scanned image. See the GitHub project page for more information and examples.
12+
13+
## Services
14+
- @"Textkernel.Tx.TxClient.Parser" - provides all parsing functionality.
15+
- @"Textkernel.Tx.TxClient.Geocoder" - determines geocoordinates based on addresses.
16+
- @"Textkernel.Tx.TxClient.Formatter" - transforms a parsed resume into a standard/templated format.
17+
- @"Textkernel.Tx.TxClient.SkillsIntelligence" - provides all Skills Intelligence functionality.
18+
- @"Textkernel.Tx.TxClient.SearchMatchV1" - provides all Search & Match V1 functionality.
19+
- @"Textkernel.Tx.TxClient.SearchMatchV2" - provides all Search & Match V2 functionality.
20+
21+
## Core Models
22+
- @"Textkernel.Tx.Models.Document" - represents an unparsed resume/job, such as a file on the file system or a byte[] in a database. This is what you pass to the @"Textkernel.Tx.TxClient" for parsing.
23+
- @"Textkernel.Tx.Models.Resume.ParsedResume" - contains all of the properties/information that is extracted when a resume/cv is parsed.
24+
- @"Textkernel.Tx.Models.Job.ParsedJob" - contains all of the properties/information that is extracted when a job description is parsed.
25+
- @"Textkernel.Tx.Models.API.ApiResponseInfo" - returned with every API call, this contains information about the transaction (error messages, cost, duration, account information, etc).
26+
27+
28+
29+
330

431
[gh-url]: https://github.com/textkernel/tx-dotnet/

docfx/sdk/.gitignore

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

docfx/sdk/index.md

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

docfx/templates/darkfx/partials/affix.tmpl.partial

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

docfx/templates/darkfx/partials/footer.tmpl.partial

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

0 commit comments

Comments
 (0)