Skip to content

Commit 217e9f3

Browse files
committed
1 parent 790c61d commit 217e9f3

18 files changed

+42
-25
lines changed

_config.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,23 @@ aux_links:
3838
"Report Issue":
3939
- "https://github.com/tt-rss/tt-rss/issues"
4040

41+
# Callouts
42+
callouts:
43+
highlight:
44+
color: yellow
45+
important:
46+
title: Important
47+
color: blue
48+
new:
49+
title: New
50+
color: green
51+
note:
52+
title: Note
53+
color: purple
54+
warning:
55+
title: Warning
56+
color: red
57+
4158
# Markdown settings
4259
markdown: kramdown
4360
kramdown:

docs/Android-Client.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ nav_order: 40
3030

3131
Releases are built automatically for every commit pushed to master branch and [published on Gitlab](https://gitlab.tt-rss.org/tt-rss/tt-rss-android/-/releases).
3232

33-
> [!WARNING]
33+
{: .warning }
3434
> This is the only official and supported way to get the APK. If you see the app on any marketplace or anywhere else, it had been uploaded there without my knowledge or consent.
3535
3636
Release APKs are signed. You can verify the signature using [apksigner](https://developer.android.com/tools/apksigner):

docs/Archived-Feed.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ nav_order: 41
77
Archived is the place for articles for which originating feed no longer exists.
88
It's either Starred articles from unsubscribed feeds or [externally shared data](Share-Anything).
99

10-
> [!NOTE]
10+
{: .note }
1111
> Articles in Archived feed are not expired automatically, you can delete them manually
1212
> using `Select...` → `Delete permanently` in the main toolbar.

docs/Content-Filters.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Matching is case-insensitive,
1313
[PCRE](http://php.net/manual/en/reference.pcre.pattern.syntax.php) pattern
1414
syntax is used.
1515

16-
> [!NOTE]
16+
{: .note }
1717
> Filter test dialog may not give entirely accurate results, especially for
1818
> complex filters. It is suggested to test filters using ``Feed debugger`` (hotkey `f-D`) if you
1919
> feel that some filter is somehow misfiring on a specific feed.
@@ -44,7 +44,7 @@ expressions.
4444

4545
Filter matching is performed during feed processing.
4646

47-
> [!NOTE]
47+
{: .note }
4848
> Some actions may be applied only when the article is initially imported from the
4949
> feed. Other actions may be applied every time article is seen in the originating
5050
> feed. It is suggested to only rely on filters applying to articles imported
@@ -53,7 +53,7 @@ Filter matching is performed during feed processing.
5353
5454
Several actions are available:
5555

56-
> [!WARNING]
56+
{: .warning }
5757
> Filters may not apply actions conditionally based on previous filters. All actions for an article are applied together, once.
5858
5959
1. ``Delete article`` - do not import article from the feed, does not

docs/Email-Digests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Users may opt into receiving daily (sent once every 24-hours) digests of unread
99
Digests are sent out by the update daemon or if running <code>update.php —feeds</code>
1010
manually. At most 15 messages are sent in one batch.
1111

12-
> [!NOTE]
12+
{: .note }
1313
> [PHPMailer plugin](https://github.com/tt-rss/tt-rss-plugin-mailer-smtp) is required to send mail under Docker.
1414
1515

docs/Encryption.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ php ./update.php --gen-encryption-key
1414

1515
If enabled, existing plaintext login sessions are automatically encrypted when used, plaintext feed passwords are encrypted on feed update.
1616

17-
> [!WARNING]
17+
{: .warning }
1818
> Automatic encryption of plaintext data is a one-way process. If you decide to disable `TTRSS_ENCRYPTION_KEY` afterwards, all encrypted sessions would become invalid and you will get logged out. Feed passwords would become unreadable until you either enable encryption back using same key or edit feeds manually.

docs/FAQ.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: FAQ
44
nav_order: 30
55
---
66

7-
> [!NOTE]
7+
{: .note }
88
> [Docker-related stuff is on a separate page](Installation-Guide#faq)
99
1010
### I want to check how tt-rss renders my feed / the feed I'm trying to use is parsed incorrectly

docs/Feed-Handler-Plugins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Feed Handler Plugins
44
nav_order: 44
55
---
66

7-
> [!WARNING]
7+
{: .warning }
88
> Unless you have a strong need for these plugins, using them is not recommended. If
99
> you do use them, at least don't enable them for all feeds.
1010

docs/Generated-Feeds.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ this icon:
1010

1111
![Generated feed icon](../images/gen_feed_icon.png)
1212

13-
> [!WARNING]
13+
{: .warning }
1414
> Subscribing to your own feed of search results is going to produce
1515
> duplicate articles on each and every feed update.
1616

docs/Global-Config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ putenv('TTRSS_SESSION_COOKIE_LIFETIME=86400*30');
5252
// instead you're casting string literal "86400*30" to an integer
5353
```
5454

55-
> [!NOTE]
55+
{: .note }
5656
> All values should be precalculated when setting via `.env` because they are not evaluated by PHP and used as-is.
5757
5858
## Minimal config.php for a non-Docker setup

0 commit comments

Comments
 (0)