From 460f728cc9a1a050c597c9d33994e6cf78c7f878 Mon Sep 17 00:00:00 2001 From: Bernd Worsch Date: Sun, 21 Sep 2025 20:53:24 +0000 Subject: [PATCH] Add MF-7: Blockquotes and code --- MF-7%3A Blockquotes and code.-.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 MF-7%3A Blockquotes and code.-.md diff --git a/MF-7%3A Blockquotes and code.-.md b/MF-7%3A Blockquotes and code.-.md new file mode 100644 index 0000000..8658ff4 --- /dev/null +++ b/MF-7%3A Blockquotes and code.-.md @@ -0,0 +1,23 @@ +Here's a Markdown example that demonstrates how to use blockquotes and code blocks. + +----- + +### Blockquote Example + +> This is a blockquote. It's often used for quoting text from another source. +> +> You can also have multiple paragraphs within a single blockquote. Just add a new line with the `>` symbol. + +----- + +### Code Example + +This is an example of **inline code** by wrapping a word in single backticks, like `hello world`. + +```python +# This is a Python code block +def get_message(): + print("Hello, MarkiTect!") + +get_message() +``` \ No newline at end of file