-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
144 lines (118 loc) · 5.11 KB
/
config.toml
File metadata and controls
144 lines (118 loc) · 5.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
baseURL = "https://docs.groupdocs.com/"
languageCode = "en"
title = "GroupDocs"
theme = "hugo-geekdoc"
disableKinds = ["RSS", "sitemap", "categories", "tags", "taxonomy", "taxonomyTerm"]
# Module mounts: serve _output_files/ and _sample_files/ as static assets
# so Hugo never tries to render .md files inside them as pages. Applies to
# every product (markdown, parser, conversion, etc.).
[module]
[[module.mounts]]
source = "content"
target = "content"
excludeFiles = ["**/_output_files/**", "**/_sample_files/**"]
[[module.mounts]]
source = "content"
target = "static"
includeFiles = ["**/_output_files/**", "**/_sample_files/**"]
# Re-declare default static mount (replaced above because same target)
[[module.mounts]]
source = "static"
target = "static"
# (Optional) Set this to true to enable 'Last Modified by' date and git author
# information on 'doc' type pages.
enableGitInfo = false
# Geekdoc required configuration
pygmentsUseClasses = true
pygmentsCodeFences = true
disablePathToLower = true
pluralizeListTitles = false
# Markup configure section
# See https://gohugo.io/getting-started/configuration-markup/
[markup]
defaultMarkdownHandler = "goldmark"
[markup.goldmark.renderer]
unsafe = true
[markup.tableOfContents]
startLevel = 1
endLevel = 4
ordered = false
[markup.highlight]
noClasses = false
style = "github"
[outputs]
home = [ "HTML", "SITEMAP", "JSON", "MD", "LLMSTXT", "LLMSFULL"]
section = [ "HTML", "MD", "LLMSFULL" ]
page = [ "HTML", "MD" ]
[outputFormats.SITEMAP]
MediaType = "application/xml"
BaseName = "product-sitemap"
IsHTML = false
IsPlainText = true
noUgly = true
Rel = "sitemap"
[mediaTypes."text/markdown"]
suffixes = ["md"]
[outputFormats.LLMSTXT]
mediaType = "text/plain"
baseName = "llms"
isPlainText = true
notAlternative = true
[outputFormats.LLMSFULL]
mediaType = "text/plain"
baseName = "llms-full"
isPlainText = true
notAlternative = true
[outputFormats.MD]
mediaType = "text/markdown"
isPlainText = true
isHTML = false
notAlternative = true
permalinkable = false
[Params]
contentDir = "content"
google_tag_manager_id = "GTM-WZTNN8"
sitemapMax = 49999
disableSearch = false
aiSearchEndpoint = "https://docsearch.api.aspose.cloud/ask"
aiSearchScopes = [ "annotation_net", "annotation_java",
"assembly_net", "assembly_java",
"classification_net",
"comparison_net", "comparison_java", "comparison_python-net", "comparison_nodejs-java",
"conversion_net", "conversion_java", "conversion_python-net", "conversion_nodejs-java",
"editor_net", "editor_java", "editor_nodejs-java",
"merger_net", "merger_java",
"metadata_net", "metadata_java",
"parser_net", "parser_java",
"redaction_net", "redaction_java",
"search_net", "search_java",
"signature_net", "signature_java",
"viewer_net", "viewer_java", "viewer_python-net", "viewer_nodejs-java",
"watermark_net", "watermark_java", "watermark_python-net", "watermark_nodejs-java",
"total_net", "total_java"
]
# Collapse not active menu items by default
GeekdocCollapseAllSections = true
# Disable default Hugo search
GeekdocSearch = false
# Show GroupDocs search input
showSearchInput = true
# Render partial, script and stylesheet for the feedback form
showFeedbackForm = true
# Set source repository location.
# Used for 'Last Modified' and 'Edit this page' links.
GitHubRepo = 'https://github.com/groupdocs/docs'
# Enable 'Edit this page' links for 'doc' page type.
# Disabled by default. Uncomment to enable. Requires 'GitHubRepo' param.
GitHubEditPath = 'edit/master'
GitHubDateFormat = 'January 2, 2006'
[Params.Sitemap]
changeFreq = "weekly"
priority = 0.5
# Redirects configuration
# Temporary redirect: all pages under /parser/python-net/* redirect to /parser/python-net/
[[redirects]]
from = "/parser/python-net/**"
to = "/parser/python-net/"
status = 302
force = false