Skip to content

Commit 3cf1770

Browse files
committed
Update styling
1 parent b4137df commit 3cf1770

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

docs/introduction.md

+6-7
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,11 @@ sidebar_label: Introduction
44
sidebar_position: 1
55
---
66

7-
# Plugin development for Obsidian
7+
# Obsidian Plugin Developer Docs
88

9-
This is an **unofficial** documentation page for Obsidian plugin development.
9+
This site is the **unofficial** developer docs for Obsidian plugins. It's being maintained by [@marcusolsson](https://github.com/marcusolsson), with the help of the Obsidian community.
1010

11-
I'm **not** affiliated with Obsidian. I learn by writing and documenting, so this is my way of learning how to build plugins myself. I'll improve the documentation as I learn more, but feel free to contribute if you see something missing or wrong.
12-
13-
If this site has been useful to you, you can buy me a coffee to support its continued development:
11+
If this site has been useful to you, you can buy the maintainer a coffee to support its continued development:
1412

1513
<a href="https://buymeacoffee.com/marcusolsson">
1614
<img src="/obsidian-plugin-docs/img/default-violet.webp" width="200" />
@@ -26,7 +24,8 @@ If this site doesn't help you, maybe one of these resources might:
2624
**Unofficial resources by community members:**
2725

2826
- [Plugins mini FAQ](https://forum.obsidian.md/t/plugins-mini-faq/7737)
29-
- [Create Your Own Obsidian Plugin](https://www.youtube.com/watch?v=9lA-jaMNS0k) by Antone Heyward
30-
- [Unofficial API FAQ](https://liamca.in/Obsidian/API+FAQ/index) by Liam Cain
27+
- [How to create a plugin for Obsidian](https://www.youtube.com/watch?v=XaES2G3PVpg) by [@phibr0](https://github.com/phibr0)
28+
- [Create Your Own Obsidian Plugin](https://www.youtube.com/watch?v=9lA-jaMNS0k) by [Antone Heyward](https://www.youtube.com/channel/UC9w43btR2UUsfR6ZUf3AlqQ)
29+
- [Unofficial API FAQ](https://liamca.in/Obsidian/API+FAQ/index) by [Liam Cain](https://liamca.in)
3130
- [Obsidian Tools](https://github.com/obsidian-tools/obsidian-tools)
3231

docusaurus.config.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ const darkCodeTheme = require("prism-react-renderer/themes/dracula");
55
/** @type {import('@docusaurus/types').DocusaurusConfig} */
66
(
77
module.exports = {
8-
title: "Plugin development for Obsidian",
9-
tagline: "Plugin development for Obsidian",
8+
title: "Obsidian Plugin Developer Docs",
9+
tagline: "Obsidian Plugin Developer Docs",
1010
url: "https://marcusolsson.github.io",
1111
baseUrl: "/obsidian-plugin-docs/",
1212
onBrokenLinks: "throw",
@@ -52,7 +52,7 @@ const darkCodeTheme = require("prism-react-renderer/themes/dracula");
5252
themeConfig: {
5353
defaultMode: "dark",
5454
navbar: {
55-
title: "Plugin development for Obsidian",
55+
title: "Obsidian Plugin Developer Docs",
5656
items: [
5757
{
5858
href: "https://buymeacoffee.com/marcusolsson",

src/css/custom.css

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@
55
--ifm-font-family-base: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
66
Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
77
"Segoe UI Symbol", "Microsoft YaHei Light", sans-serif;
8+
--ifm-link-hover-color: #8875ff;
9+
--ifm-link-hover-decoration: none;
10+
--ifm-navbar-height: 66px;
11+
}
12+
13+
html body {
14+
text-rendering: optimizeLegibility;
815
}
916

1017
.docusaurus-highlight-code-line {

0 commit comments

Comments
 (0)