aboutsummaryrefslogtreecommitdiff
path: root/tests/basic/blockquotes-with-code-blocks.html
diff options
context:
space:
mode:
authorSadaf Ebrahimi <sadafebrahimi@google.com>2022-11-04 20:35:11 +0000
committerSadaf Ebrahimi <sadafebrahimi@google.com>2022-11-04 20:35:11 +0000
commitd11b75301624f3c59c7243ad1e75243446f5c229 (patch)
tree1a110fa9fa982e746b1969458c5b9d373c70a38c /tests/basic/blockquotes-with-code-blocks.html
parentf94cfcb46cac5900c86c14ab81db9aac90978889 (diff)
downloadmarkdown-d11b75301624f3c59c7243ad1e75243446f5c229.tar.gz
Upgrade markdown to 3.4.1
This project was upgraded with external_updater. Usage: tools/external_updater/updater.sh update markdown For more info, check https://cs.android.com/android/platform/superproject/+/master:tools/external_updater/README.md Test: TreeHugger Change-Id: I96b25097329b04dcfd580791826971ce299c12f1
Diffstat (limited to 'tests/basic/blockquotes-with-code-blocks.html')
-rw-r--r--tests/basic/blockquotes-with-code-blocks.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/basic/blockquotes-with-code-blocks.html b/tests/basic/blockquotes-with-code-blocks.html
new file mode 100644
index 0000000..5fc98b1
--- /dev/null
+++ b/tests/basic/blockquotes-with-code-blocks.html
@@ -0,0 +1,12 @@
+<blockquote>
+<p>Example:</p>
+<pre><code>sub status {
+ print "working";
+}
+</code></pre>
+<p>Or:</p>
+<pre><code>sub status {
+ return "working";
+}
+</code></pre>
+</blockquote> \ No newline at end of file