-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jazzy.yaml
154 lines (147 loc) · 4.16 KB
/
.jazzy.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
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
145
146
147
148
149
150
151
152
153
author: John Fairhurst
author_url: http://github.com/johnfairh
copyright: Distributed under the MIT license. Maintained by [John Fairhurst](mailto:johnfairh@gmail.com).
readme: README.md
products:
- docs
- docset
- unresolved-json
- undocumented-json
code_host: github
code_host_url: https://github.com/johnfairh/swift-sass
code_host_file_url: https://github.com/johnfairh/swift-sass/blob/main
clean: true
sdk: macosx
theme: fw2020
deployment_url: https://johnfairh.github.io/swift-sass/
build_tool: spm
modules:
- Sass
- DartSass
docset_module_name: swift-sass
title: Swift Sass v3.1.0
module_version: 3.1.0
merge_modules: true
custom_abstracts: SourceDocs/*md
topic_style: source-order-defs
remote_autolink:
- url: https://swiftpackageindex.com/apple/swift-nio/main/
- url: https://apple.github.io/swift-log/docs/current/Logging/
modules: Logging
rewrite_link_urls:
- https://github.com/johnfairh/swift-sass/blob/main
custom_groups:
- name: Sass Compilation
abstract: Main types for using the Sass compiler.
topics:
- name: Compiler
children:
- DartSass.Compiler
- name: Inputs
children:
- Syntax
- CssStyle
- SourceMapStyle
- CompilerMessageStyle
- CompilerWarningLevel
- Deprecation
- DeprecationControl
- name: Outputs
children:
- CompilerResults
- CompilerMessage
- CompilerError
- Span
- name: Custom Importers
children:
- name: Dart Sass
children:
- DartSass.Importer
- DartSass.ImporterResults
- DartSass.ImporterContext
- DartSass.FilesystemImporter
- DartSass.ImportResolver
- name: Custom Functions
children:
- SassFunction
- SassFunctionSignature
- SassFunctionMap
- name: SassScript
topics:
- name: Main types
children:
- SassValue
- SassString
- SassNumber
- SassColor
- SassConstants
- SassList
- SassArgumentList
- SassMap
- SassCalculation
- SassMixin
- name: Function object types
children:
- SassCompilerFunction
- SassDynamicFunction
- name: Less-commonly used types
children:
- SassValueVisitor
- SassNull
- SassBool
- name: Errors
abstract: Types thrown as errors -- see `CompilerError` too.
children:
- DartSass.ProtocolError
- DartSass.LifecycleError
- Sass.SassFunctionError
custom_defs:
- name: DartSass.Compiler
topics:
- name: Initializers
children:
- init(eventLoopGroup:timeout:messageStyle:verboseDeprecations:deprecationControl:warningLevel:importers:functions:)
- init(eventLoopGroup:embeddedCompilerFileURL:embeddedCompilerFileArguments:timeout:messageStyle:verboseDeprecations:deprecationControl:warningLevel:importers:functions:)
- name: Compilation
children:
- compile(string:syntax:url:importer:outputStyle:sourceMapStyle:includeCharset:importers:functions:)
- compile(fileURL:outputStyle:sourceMapStyle:includeCharset:importers:functions:)
- name: Lifecycle
children:
- compilerProcessIdentifier
- compilerName
- compilerVersion
- compilerPackageVersion
- reinit()
- shutdownGracefully()
- name: SassValue
topics:
- name: Sass properties
children:
- isNull
- isTruthy
- name: Downcasts
children:
- asString()
- asNumber()
- asColor()
- asBool()
- asMap()
- asArgumentList()
- asCompilerFunction()
- asDynamicFunction()
- asCalculation()
- name: Sass listiness
children:
- listCount
- arrayIndexFrom(sassIndex:)
- valueAt(sassIndex:)
- hasBrackets
- separator
- name: Misc
children:
- ==(SassValue, SassValue)
- accept(visitor:)
- hash(into:)
- makeIterator()
- description