forked from toptensoftware/RichTextKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.docsanity.yaml
71 lines (59 loc) · 1.75 KB
/
.docsanity.yaml
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
# The output directory for all generated files
out: ./doc
# True to clean the output directory before generation
# (recommended as it ensures no orphaned files from previous builds)
clean: true
# Only include public and protected members
publicOnly: true
# Whether to include externally declared inherited members
importedMembers: false
# Information about the project. By default these will be taken
# from the assembly information of the first assembly. Uncomment
# and update the following lines to override
project:
name: RichTextKit
# version: 1.9
# The assemblies for which documentation should be generated,
# .xml files are expected in the same location
assemblies:
- ./Build/Release/Topten.RichTextKit/netcoreapp2.1/Topten.RichTextKit.dll
# Namespaces to be assumed when formatting fully qualified type names
namespaces:
- System
- System.Collections.Generic
- System.Threading.Tasks
# The template and content files to be processed/copied
content:
- src: LosAngeles
- dst: /index.md
- src: ./docsrc/
- src: ./Artwork/banner@2x.png
dst: /Artwork/
# Optional entries to go at the top of the table of contents
toc:
- text: Guides
href: .
subItems:
- text: Overview
href: .
- text: Installation
href: install
- text: Basic Concepts
href: basics
- text: Creating a Text Block
href: textBlock
- text: Controlling Layout
href: layout
- text: Rendering Text
href: rendering
- text: Measuring Text
href: measuring
- text: Hit Testing
href: hittesting
- text: Caret Information
href: caret
- text: License
href: license
# Optional data to pass to template
data:
projectUrlPrefix: "/richtextkit/"