Skip to content

Commit 3d1c8d2

Browse files
authored
Fix the name of the warning CSS class in Search page
I forgot the "." in front of ".warning", so the CSS class was not applied.
1 parent 8682454 commit 3d1c8d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/Search.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ PostgreSQL provides:
7272

7373
For example: `ocean & ( ( pacific | atlantic ) & ! "black sea" )`
7474

75-
{: warning }
75+
{: .warning }
7676
> Due to current parser limitations, the handling of space is important:
7777
> - Spaces are **required around words enclosed in quotes** such as `"black sea"`, otherwise the parser does not detect the quotes.
7878
> - Spaces are **recommended around single words** such as `atlantic`, otherwise the word is not highlighted (please also see [highlighting limitations](#highlighting_limitations)).
7979
> - Spaces are **recommended around logical operators**, otherwise highlighting may not work correctly.
8080
81-
{: warning }
81+
{: .warning }
8282
> Due to current parser limitations, when at least one operator is detected Tiny Tiny RSS does not apply the default _AND_ operator. Tiny Tiny RSS expects the whole query to be well formatted. For example the query `one two` works because no operator is detected, so Tiny Tiny RSS adds the _AND_.
8383
> However, `one two & three` fails because Tiny Tiny RSS detects the `&` operator, so expects the whole query to be well formatted, and does not add the missing `&` between the words `one` and `two`.
8484
@@ -149,7 +149,7 @@ If the searched word is prefixed by the negation `-`, it is not highlighted.
149149
<a id="undetected_errors"></a>
150150
## Undetected errors
151151

152-
{: warning }
152+
{: .warning }
153153
> Due to current parser limitations, most syntax errors are undetected. When user enters a badly formatted search query, it is incorrectly parsed, no message is displayed, and the results are unexpected.
154154
155155

0 commit comments

Comments
 (0)