Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .markdownlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ whitespace: true
MD010:
code_blocks: false # Disallow hard tabs except in code blocks.
MD033:
allowed_elements: ["p","br"]
allowed_elements: ["p","br","span"]
2 changes: 1 addition & 1 deletion book/book.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ title = "SuperDB"
enable = true

[output.html]
additional-css = ["super-example/super-example.css", "copy-button/copy-button.css", "admonitions/admonitions.css"]
additional-css = ["super-example/super-example.css", "copy-button/copy-button.css", "admonitions/admonitions.css", "trademark/trademark.css"]
additional-js = ["super-example.bundle.js", "copy-button/copy-button.js"]
git-repository-url = "https://github.com/brimdata/super/tree/main/book"
no-section-label = true
Expand Down
2 changes: 1 addition & 1 deletion book/src/intro.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Introduction

SuperDB is a new type of analytics database that promises an easier approach
SuperDB<span class="tm">®</span> is a new type of analytics database that promises an easier approach
to modern data because it unifies relational tables and eclectic JSON in a
powerful, new data model called [_super-structured data_](formats/model.md).
SuperDB's query language is a
Expand Down
4 changes: 2 additions & 2 deletions book/src/super-sql/intro.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SuperSQL
# SuperSQL<span class="tm">®</span>

SuperSQL is a
SuperSQL<span class="tm">®</span> is a
[Pipe SQL](https://research.google/pubs/sql-has-problems-we-can-fix-them-pipe-syntax-in-sql/)
adapted for
[super-structured data](../formats/model.md).
Expand Down
18 changes: 18 additions & 0 deletions book/trademark/trademark.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/* Trademark / registered-trademark marks rendered small and raised, per the
common typographic convention, so they aren't visually disruptive. */

.tm {
font-size: 0.6em;
vertical-align: super;
line-height: 0;
}

/* The book title in the top menu bar comes from book.toml as plain text, so the
registered-trademark mark is injected and styled here rather than inline. */
.menu-title::after {
content: "\00AE"; /* ® (registered trademark) */
font-size: 0.6em;
vertical-align: super;
line-height: 0;
margin-left: 0.05em;
}
Loading