Skip to content

Commit d5fbbbd

Browse files
committed
Website content refactor (mostly pluralized page names to singular ones)
1 parent 96fb9f8 commit d5fbbbd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+125
-128
lines changed

libraries/Library/Std/Infrastructure/Library.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,11 @@ table.manage-library td {
409409
vertical-align: top;
410410
white-space: normal !important;
411411
}
412+
413+
table.manage-library thead td {
414+
white-space: nowrap !important;
415+
}
416+
412417
table.manage-library thead td:last-child {
413418
text-align: right;
414419
}

libraries/Library/Std/Infrastructure/URI.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ virtualPage.define {
1010
pattern = "uri:.+",
1111
run = function(path)
1212
local uri = path:sub(#"uri:"+1)
13-
print("Now going to do readURL on", uri)
1413
return net.readURI(uri .. ".md", {encoding="text/markdown"})
1514
end
1615
}
@@ -22,5 +21,4 @@ service.define {
2221
return net.proxyFetch(data.uri).body
2322
end
2423
}
25-
2624
```

libraries/Library/Std/Pages/Library Manager.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22

33
From here you can extend SilverBullet with additional functionality throught he use of [libraries](https://silverbullet.md/Libraries).
44

5+
# Installed Libraries
6+
${widgets.commandButton("Update All", "Library: Update All")}
7+
${library.installedLibrariesWidget()}
8+
# Available Libraries
9+
${widgets.commandButton("Install from URI", "Library: Install")}
10+
${library.installableLibrariesWidget()}
11+
To discover more libraries, [have a look at the community forums](https://community.silverbullet.md/c/plugs-libraries/14).
512
# Repositories
613
${widgets.commandButton("Add from URI", "Library: Add Repository")} ${widgets.commandButton("Update All", "Library: Update All Repositories")}
714
${library.installedRepositoriesWidget()}
815
To discover more repositories, [have a look at the community forums](https://community.silverbullet.md/c/plugs-libraries/14).
9-
# Installed libraries
10-
${widgets.commandButton("Update All", "Library: Update All")} ${widgets.commandButton("Reload all plugs", "Plugs: Reload")}
11-
${library.installedLibrariesWidget()}
12-
# Available libraries
13-
${widgets.commandButton("Install from URI", "Library: Install")}
14-
${library.installableLibrariesWidget()}

libraries/Repositories/Std.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,6 @@ description: Adds a tree view that allows you to navigate your SilverBullet page
3131
website: https://github.com/joekrill/silverbullet-treeview
3232
uri: https://github.com/joekrill/silverbullet-treeview/blob/main/PLUG.md
3333
---
34-
name: GraphView
35-
author: Deepak Narayan
36-
description: Obsidian-like graph view for SilverBullet
37-
website: https://github.com/deepkn/silverbullet-graphview
38-
uri: https://github.com/zefhemel/silverbullet-graphview/blob/main/PLUG.md
39-
---
4034
name: PDF Viewer
4135
author: MrMugame
4236
website: https://github.com/MrMugame/silverbullet-pdf

website/API/editor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ editor.save()
141141
Navigates to the specified page reference.
142142

143143
Parameters:
144-
- `ref`: The (string) reference to navigate to, see [[Links#Link syntax (String refs)|string refs]]
144+
- `ref`: The (string) reference to navigate to, see [[../Link#Link syntax (String refs)|string refs]]
145145
- `replaceState`: Whether to replace the current history state
146146
- `newWindow`: Whether to open in a new window
147147

website/API/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ testattribute: 10
33
---
44
#api/syscall
55

6-
The `index` API provides functions for interacting with SilverBullet's [[Objects]], allowing you to store and query page-associated data.
6+
The `index` API provides functions for interacting with SilverBullet's [[Object]], allowing you to store and query page-associated data.
77

88
## Object Operations
99

1010
## index.tag(name)
11-
Returns a given [[Objects#Tags]] as a query collection, to be queried using [[Space Lua/Lua Integrated Query]].
11+
Returns a given [[Object#Tags]] as a query collection, to be queried using [[Space Lua/Lua Integrated Query]].
1212

1313
Example:
1414

website/API/slashCommand.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#api/space-lua
22

3-
APIs to create [[Slash Commands]]. For simple cases it is recommended to use [[Library/Std/Infrastructure/Slash Templates]] instead.
3+
APIs to create [[Slash Command]]. For simple cases it is recommended to use [[Library/Std/Infrastructure/Slash Templates]] instead.
44

55
## slashCommand.define(spec)
66

website/Anything Picker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
The anything picker can be used to open any page, including [[Meta Pages]] and pages hidden with [[Page Decorations]]. Otherwise it’s equivalent to the [[Page Picker]].
1+
The anything picker can be used to open any page, including [[Meta Page]] and pages hidden with [[Page Decorations]]. Otherwise it’s equivalent to the [[Page Picker]].
22

33
To open, run the command ${widgets.commandButton("Navigate: Anything Picker")} using this button or [[Command Palette]]. Alternatively cycle from any other Picker by typing `^`.

website/Architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ SilverBullet contains a custom [[Lua]] runtime called [[Space Lua]]. It should b
1616
When Lua code gets too complicated or performance is more of a concern, the next level is to build your extension in TypeScript as a plug.
1717

1818
## Plugs
19-
[[Plugs]] and the PlugOS library that implements are a generic means to extend SilverBullet. Code is written in TypeScript and compiled into a single JavaScript `.plug.js` bundle that can be distributed as part of a [[Libraries|Library]].
19+
[[Plugs]] and the PlugOS library that implements are a generic means to extend SilverBullet. Code is written in TypeScript and compiled into a single JavaScript `.plug.js` bundle that can be distributed as part of a [[Library|Library]].
2020

2121
A lot of [“built in” functionality](https://github.com/silverbulletmd/silverbullet/tree/main/plugs) in SilverBullet in in fact implemented as plugs, partially to “stress test” this infrastructure.
2222

website/Aspiring Pages.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
An aspiring page is a [[Pages|page]] that does not yet exist, but is already linked to.
1+
An aspiring page is a [[Page|page]] that does not yet exist, but is already linked to.
22

3-
Aspiring pages appear in the [[Page Picker]] (with a `Create page` hint) as well as in auto complete when creating [[Links]].
3+
Aspiring pages appear in the [[Page Picker]] (with a `Create page` hint) as well as in auto complete when creating [[Link]].

0 commit comments

Comments
 (0)