From c5b56abbb8ab941749619fefb536f1ed3b5e969f Mon Sep 17 00:00:00 2001 From: StepanovPlaton Date: Tue, 3 Feb 2026 14:34:25 +0400 Subject: [PATCH] =?UTF-8?q?Delete=20Posts=20=E2=80=9Cfeatures=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/content/posts/features.md | 96 ----------------------------------- 1 file changed, 96 deletions(-) delete mode 100644 src/content/posts/features.md diff --git a/src/content/posts/features.md b/src/content/posts/features.md deleted file mode 100644 index 1a02b71..0000000 --- a/src/content/posts/features.md +++ /dev/null @@ -1,96 +0,0 @@ ---- -title: Extended Features -published: 2010-01-02 -updated: 2020-02-02 -description: 'Read more about Markdown features in Twilight' -image: '' -tags: [Markdown] -category: -draft: false ---- - - -## GitHub Repository Cards - -You can add dynamic cards that link to GitHub repositories, on page load, the repository information is pulled from the GitHub API. - -::github{repo="Spr-Aachen/Twilight"} - -Create a GitHub repository card with the code `::github{repo="Spr-Aachen/Twilight"}`. - -```markdown -::github{repo="Spr-Aachen/Twilight"} -``` - - -## Admonitions - -Following types of admonitions are supported: `note` `tip` `important` `warning` `caution` - -:::note -Highlights information that users should take into account, even when skimming. -::: - -:::tip -Optional information to help a user be more successful. -::: - -:::important -Crucial information necessary for users to succeed. -::: - -:::warning -Critical content demanding immediate user attention due to potential risks. -::: - -:::caution -Negative potential consequences of an action. -::: - -### Basic Syntax - -```markdown -:::note -Highlights information that users should take into account, even when skimming. -::: - -:::tip -Optional information to help a user be more successful. -::: -``` - -### Custom Titles - -The title of the admonition can be customized. - -:::note[MY CUSTOM TITLE] -This is a note with a custom title. -::: - -```markdown -:::note[MY CUSTOM TITLE] -This is a note with a custom title. -::: -``` - -### GitHub Syntax - -> [!TIP] -> [The GitHub syntax](https://github.com/orgs/community/discussions/16925) is also supported. - -``` -> [!NOTE] -> The GitHub syntax is also supported. - -> [!TIP] -> The GitHub syntax is also supported. -``` - -### Spoiler - -You can add spoilers to your text. The text also supports **Markdown** syntax. - -The content :spoiler[is hidden **ayyy**]! - -```markdown -The content :spoiler[is hidden **ayyy**]! \ No newline at end of file