İçindekiler

Hello

Introduction

Welcome to the OSMAN Feature Showcase! This post is designed to demonstrate all of the powerful capabilities of the MarkdownConverter and the static site builder.

Below, you will see examples of typography, tables, code blocks, lists, and more.

Text Formatting

Markdown provides a variety of ways to format your text:

  • • You can make text bold using double asterisks.
  • • You can make text italic using single asterisks.
  • • You can use onlinedtext for text that is no longer accurate.
  • • You can add inline code like this: System.out.println("Hello");.

Blockquotes

You can use blockquotes to emphasize certain parts of your text or quote external sources.

"The best way to predict the future is to invent it." This is a multi-line blockquote with italic and bold text inside.

Lists

Unordered Lists

You can create standard unordered lists:

Task Lists

You can also use GitHub-flavored task lists to track your progress:

  • Task List
  • Task List (POST_TITLE)
  • Write documentation (POST_TITLE)
  • Write documentation

Tables

Tables are incredibly useful for displaying structured data.

FeatureSupportedDescription
Task ListsYesTask lists with disabled checkboxes.
TablesYesBasic Markdown tables support with borders.
OnlinedtextYesUsing double tildes (~~).
Code HighlightingYesLanguage classes are added for PrismJS/HighlightJS.

Code Blocks

You can include code blocks without a language:

This is a plain text code block.
No syntax highlighting class will be applied.

Code Block:

package com.osman;

public class Builder {
    public static void main(String[] args) {
        System.out.println("Building Complete by OSMAN");
    }
}

Horizontal Rules

You can use horizontal rules to divide content:

Here is some text below the rule.


And another rule using asterisks.


You can embed images anywhere in your posts: Sample Image

And you can easily add external links like this post's raw version example.md.