Template blog post

As robotics continues to advance at a rapid pace, so too do the ethical questions surrounding its development. The creation of intelligent machines capable of complex tasks raises profound concerns about safety, privacy, and the potential impact on employment. In this article, we will explore these ethical dilemmas and discuss the implications for the future of robotics.

Text Formatting

You can make text bold, italic, or both. For inline code, use backticks. Strikethrough is also available.

Lists

Unordered List

  • Item 1
  • Item 2
    • Subitem A
    • Subitem B
  • Item 3

Ordered List

  1. First
  2. Second
    1. Subsection
    2. Another subsection
  3. Third

Task List

  • Completed task
  • Pending task
  • Another completed task

Blockquotes

This is a blockquote.

Nested blockquotes are also possible.

Code Blocks

def greet(name):
    print(f"Hello, {name}!")

greet("Ekumen")

Horizontal Rule


Beluga’s repo | Beluga documentation

Tables

FeatureCommonMarkGitHub Flavored
Tables
Strikethrough
Autolinks

Admonitions

NOTE

This is a note admonition. It’s commonly used for additional information.

WARNING

Be cautious! This is a warning admonition.

TIP

Here’s a helpful tip using the tip admonition.

IMPORTANT

This is an important admonition.

CAUTION

This is a caution admonition.

Math Notation

Inline math: The quadratic formula is x=b±b24ac2ax = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}.

Display math:

×B=μ0JE=ρϵ0\begin{aligned} \nabla \times \vec{\mathbf{B}} &= \mu_0\vec{\mathbf{J}} \\ \nabla \cdot \vec{\mathbf{E}} &= \frac{\rho}{\epsilon_0} \end{aligned}

Mermaid Diagrams

Flowchart

Loading graph...

graph TD
    A[Start] --> B{Is it sunny?}
    B -->|Yes| C[Go to the beach]
    B -->|No| D[Stay home]
    C --> E[Apply sunscreen]
    D --> F[Watch a movie]
    E --> G[Swim]
    F --> H[End]
    G --> H

Sequence Diagram

Loading graph...

sequenceDiagram
    participant Alice
    participant Bob
    Alice->>Bob: Hello, Bob!
    Bob->>Alice: Hi, Alice!
    Alice->>Bob: How are you?
    Bob-->>Alice: I'm good, thanks!

Images, Figures, and GIFs

Basic Image

Beluga Logo

Figure with Caption

Figure 1: Andino robot

Animated GIF

Andino runs Beluga

Additional CommonMark Features

https://github.com/Ekumen-OS/andino automatically becomes a link.

Hard Line Breaks

First line Second line (two spaces at the end of the first line)

Soft Line Breaks

This is a paragraph with a soft line break.

Escaping Characters

*Not italic* ~~Not strikethrough~~ `Not code`

Visit Ekumen for more info.

YouTube Video Embed

To embed a YouTube video, you can use an iframe:

This template now includes all the requested features:

  1. CommonMark syntax (headers, lists, code blocks, etc.)
  2. Tables
  3. Admonitions (note, warning, tip)
  4. Math notation (inline and display)
  5. Mermaid diagrams (flowchart and sequence diagram)
  6. Images (basic)
  7. Figures (images with captions)
  8. GIFs (animated)
  9. YouTube video embed (using <iframe>)

Note:

  • Some features like admonitions, math notation, and Mermaid diagrams are extensions to CommonMark and may require specific Markdown processors or additional plugins to render correctly.
  • For YouTube videos, the iframe method is commonly used, but it’s technically HTML, not Markdown.