--- title: How rich this blog system is! date: 2024-10-12 isPublished: true lang: 'en' --- > This post is a demonstration of how rich this blog system is. Continuously updated. # Titles # H1 ## H2 ### H3 #### H4 ##### H5 ###### H6 # Texts Hello World **Bold** _Italic_ # Footnote Footnotes are supported.[^1] You can also attach them to a longer sentence when you want to keep the main flow readable.[^note] ```md Footnotes are supported.[^1] You can also attach them to a longer sentence when you want to keep the main flow readable.[^note] [^1]: This is a footnote. [^note]: This is another footnote with a named label. ``` [^1]: This is a footnote. [^note]: This is another footnote with a named label. # GitHub Alert > [!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. # Image  ## Image with a caption  # Code **javascript** ```javascript console.log('Hello World'); ``` **zig** ```zig const std = @import("std"); pub fn main() void { const stdout = std.io.getStdOut().writer(); try stdout.print("Hello, {}!\n", .{"world"}); } ``` # Tweet