Skip to content

Commit 148898a

Browse files
committed
Add missing Jazzy files.
1 parent 1329408 commit 148898a

File tree

17 files changed

+931
-0
lines changed

17 files changed

+931
-0
lines changed

Source/ios-framework/docs/jazzy.yaml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
theme: "./jazzy_theme"
2+
output: "./swift_output"
3+
author: "ObjectBox"
4+
author_url: "https://objectbox.io"
5+
6+
module: "ObjectBox"
7+
module_version: 0.9.0
8+
9+
github_url: "https://github.com/ObjectBox/objectbox-swift"
10+
root_url: "https://objectbox.io/docfiles/swift/current/"
11+
exclude: [
12+
"../CommonSource/Entities/EntityPropertyTypeImplementations.swift",
13+
"../CommonSource/PropertyCollector+SwiftRefinedAPI.swift",
14+
"../CommonSource/Entities/EntityPropertyType.swift",
15+
"../CommonSource/Entities/EntityReader+SwiftRefinedAPI.swift",
16+
"../CommonSource/Relation/Box+BacklinkIds.swift",
17+
"../CommonSource/Cursor.swift"
18+
]
19+
20+
# Reference custom Markdown files for inclusion, references by filename in `custom_categories`.
21+
documentation: "./docs/texts/*.md"
22+
custom_categories:
23+
- name: Core
24+
children:
25+
- Store
26+
- Box
27+
- Entity
28+
- Id
29+
- Property
30+
- name: Relations
31+
children:
32+
- ToOne
33+
- ToMany
34+
- name: Query
35+
children:
36+
- Query Syntax # custom doc
37+
- Query
38+
- PropertyQuery
39+
- PropertyQueryCondition
40+
- QueryCondition
41+
- PropertyAlias
42+
- ".=(_:_:)"
43+
- name: Other Types
44+
children:
45+
- IdBase
46+
- EntityInspectable
47+
- EntityPropertyTypeConvertible
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
/* Credit to https://gist.github.com/wataru420/2048287 */
2+
3+
.highlight {
4+
.c { color: #999988; font-style: italic } /* Comment */
5+
.err { color: #a61717; background-color: #e3d2d2 } /* Error */
6+
.k { color: #000000; font-weight: bold } /* Keyword */
7+
.o { color: #000000; font-weight: bold } /* Operator */
8+
.cm { color: #999988; font-style: italic } /* Comment.Multiline */
9+
.cp { color: #999999; font-weight: bold } /* Comment.Preproc */
10+
.c1 { color: #999988; font-style: italic } /* Comment.Single */
11+
.cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */
12+
.gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
13+
.gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */
14+
.ge { color: #000000; font-style: italic } /* Generic.Emph */
15+
.gr { color: #aa0000 } /* Generic.Error */
16+
.gh { color: #999999 } /* Generic.Heading */
17+
.gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
18+
.gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */
19+
.go { color: #888888 } /* Generic.Output */
20+
.gp { color: #555555 } /* Generic.Prompt */
21+
.gs { font-weight: bold } /* Generic.Strong */
22+
.gu { color: #aaaaaa } /* Generic.Subheading */
23+
.gt { color: #aa0000 } /* Generic.Traceback */
24+
.kc { color: #000000; font-weight: bold } /* Keyword.Constant */
25+
.kd { color: #000000; font-weight: bold } /* Keyword.Declaration */
26+
.kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */
27+
.kr { color: #000000; font-weight: bold } /* Keyword.Reserved */
28+
.kt { color: #445588; } /* Keyword.Type */
29+
.m { color: #009999 } /* Literal.Number */
30+
.s { color: #d14 } /* Literal.String */
31+
.na { color: #008080 } /* Name.Attribute */
32+
.nb { color: #0086B3 } /* Name.Builtin */
33+
.nc { color: #445588; font-weight: bold } /* Name.Class */
34+
.no { color: #008080 } /* Name.Constant */
35+
.ni { color: #800080 } /* Name.Entity */
36+
.ne { color: #990000; font-weight: bold } /* Name.Exception */
37+
.nf { color: #990000; } /* Name.Function */
38+
.nn { color: #555555 } /* Name.Namespace */
39+
.nt { color: #000080 } /* Name.Tag */
40+
.nv { color: #008080 } /* Name.Variable */
41+
.ow { color: #000000; font-weight: bold } /* Operator.Word */
42+
.w { color: #bbbbbb } /* Text.Whitespace */
43+
.mf { color: #009999 } /* Literal.Number.Float */
44+
.mh { color: #009999 } /* Literal.Number.Hex */
45+
.mi { color: #009999 } /* Literal.Number.Integer */
46+
.mo { color: #009999 } /* Literal.Number.Oct */
47+
.sb { color: #d14 } /* Literal.String.Backtick */
48+
.sc { color: #d14 } /* Literal.String.Char */
49+
.sd { color: #d14 } /* Literal.String.Doc */
50+
.s2 { color: #d14 } /* Literal.String.Double */
51+
.se { color: #d14 } /* Literal.String.Escape */
52+
.sh { color: #d14 } /* Literal.String.Heredoc */
53+
.si { color: #d14 } /* Literal.String.Interpol */
54+
.sx { color: #d14 } /* Literal.String.Other */
55+
.sr { color: #009926 } /* Literal.String.Regex */
56+
.s1 { color: #d14 } /* Literal.String.Single */
57+
.ss { color: #990073 } /* Literal.String.Symbol */
58+
.bp { color: #999999 } /* Name.Builtin.Pseudo */
59+
.vc { color: #008080 } /* Name.Variable.Class */
60+
.vg { color: #008080 } /* Name.Variable.Global */
61+
.vi { color: #008080 } /* Name.Variable.Instance */
62+
.il { color: #009999 } /* Literal.Number.Integer.Long */
63+
}

0 commit comments

Comments
 (0)