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
- First
- Second
- Subsection
- Another subsection
- 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
Links
Beluga’s repo | Beluga documentation
Tables
Feature | CommonMark | GitHub 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 .
Display math:
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
Figure with Caption
Animated GIF
Additional CommonMark Features
Auto-links
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`
Reference-Style Links
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:
- CommonMark syntax (headers, lists, code blocks, etc.)
- Tables
- Admonitions (note, warning, tip)
- Math notation (inline and display)
- Mermaid diagrams (flowchart and sequence diagram)
- Images (basic)
- Figures (images with captions)
- GIFs (animated)
- 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.