Code block tests
This test page is quite outdated: MDX v2 lowercase tags are not substituted anymore in the same way as they were in v1.
class HelloWorld {
public static void main(String args[]) {
System.out.println("Hello, World");
}
}
See:
- https://github.com/facebook/docusaurus/pull/1584
- https://github.com/facebook/docusaurus/pull/3749
- https://github.com/facebook/docusaurus/pull/6177
Code block prism language testsβ
Code block with/without the good prism language case(lower or upper) in additionalLanguages[]
<?php
$x=15;
$y=30;
$z=$x+$y;
echo "Sum: ",$z;
?>
<?php
$x=15;
$y=30;
$z=$x+$y;
echo "Sum: ",$z;
?>
<?php
$x=15;
$y=30;
$z=$x+$y;
echo "Sum: ",$z;
?>
See:
pre
β
pre > string
β
Multi-line text inside pre
will turn into one-liner, but it's okay (https://github.com/mdx-js/mdx/issues/1095)
1 2 3
1 2 3
pre > string[]
β
1 2 3
pre > element
β
http://localhost:3000Lol bro
pre > element[]
β
Front pageInput: a = "abcd", b = "cdabcdab" Output: 3 Explanation: a after three repetitions become "ab cdabcdabcd", at which time b is a substring.
pre > code > element
β
Hey bro
code
β
code > string
β
1 2 3
link:
title: front page
path: /docs/
code > string[]
β
link:
title: front page
path: /docs/
code > element
β
http://localhost:3000Lol bro
code > element[]
β
Front page
Input: a = "abcd", b = "cdabcdab"
Output: 3
Explanation: a after three repetitions become "ab
cdabcdab
cd", at which time b is a substring.
CodeBlock
β
CodeBlock > string
β
1 2 3
link:
title: front page
path: /docs/
CodeBlock > string[]
β
link:
title: front page
path: /docs/
CodeBlock > element
β
http://localhost:3000Lol bro
CodeBlock > element[]
β
Front page
Input: a = "abcd", b = "cdabcdab"
Output: 3
Explanation: a after three repetitions become "ab
cdabcdab
cd", at which time b is a substring.
Code blocks with line numbering testsβ
function PageLayout(props) {
return <Layout title="Awesome Docusaurus page" description="Test Test Test Test Test Test Test Test Test Test Test Test Test Test ">;
}
function PageLayout(props) {
return <Layout title="Awesome Docusaurus page" description="Test Test Test Test Test Test Test Test Test Test Test Test Test Test ">;
}
function PageLayout(props) {
console.log(
'Test Test Test Test Test Test Test Test Test Test Test Test Test Test ',
);
console.log(
'Test Test Test Test Test Test Test Test Test Test Test Test Test Test ',
);
console.log(
'Test Test Test Test Test Test Test Test Test Test Test Test Test Test ',
);
console.log(
'Test Test Test Test Test Test Test Test Test Test Test Test Test Test ',
);
console.log(
'Test Test Test Test Test Test Test Test Test Test Test Test Test Test ',
);
console.log(
'Test Test Test Test Test Test Test Test Test Test Test Test Test Test ',
);
console.log(
'Test Test Test Test Test Test Test Test Test Test Test Test Test Test ',
);
console.log(
'Test Test Test Test Test Test Test Test Test Test Test Test Test Test ',
);
console.log(
'Test Test Test Test Test Test Test Test Test Test Test Test Test Test ',
);
}
Code block wrapping testsβ
mkdir this_is_a_loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong_string_to_test_code_block_wrapping
echo "this is a long string made up of many separate words that should be broken between words when possible"
curl https://docusaurus.io/tests/pages/code-block-tests
- Short tab
- Long tab
- Short tab
echo "hi"
echo this will test whether a long string that is initially hidden will have the option to wrap when made visible
rm short_initially_hidden_string
- Long tab
- Short tab
echo medium_length_string_will_have_the_option_to_wrap_after_window_resized_while_it_is_hidden
echo "short_initially_hidden_string"
import React from 'react';
import Layout from '@theme/Layout';
export default function MyReactPage() {
return (
<Layout>
<h1>My React page</h1>
<p>
This is a React page. Let's make this sentence bit long. Some more words
to make sure... Some more words to make sure... Some more words to make
sure...
</p>
</Layout>
);
}
Magic comments testsβ
function sum(n)
local result = 0
for i = 1, n do
result = result + i
end
print(result)
end
stringLength :: String -> Int
stringLength [] = 0
stringLength (x:xs) = 1 + stringLength xs
(module
(func $add (param $a i32) (param $b i32) (result i32)
local.get $a
local.get $b
i32.add)
(export "add" (func $add)))
SELECT *
FROM orders
WHERE customer_id IN (
SELECT customer_id
FROM customers
WHERE country = 'USA'
)
function result = times2(n)
result = n * 2;
end
x = 10;
y = times2(x);
\begin{document}
\section{Triangles}
\subsection{Pythagoras' Theorem}
Pythagoras's theorem is:
\begin{equation}
c^2 = a^2 + b^2
\end{equation}
\end{document}
Function Factorial(ByVal n As Long) As Long
If n < 0 Then
Err.Raise 5 ' Invalid argument
End If
Factorial = 1 ' return value
Dim i As Long
For i = 2 To n
Factorial = Factorial * i
Next
End Function
Dim languages As New HashSet(Of String) From {
"C#",
"Visual Basic",
"F#",
"PowerShell",
"TypeScript"
}
@echo off
setlocal
ipconfig
echo Docusaurus is awesome
netstat
program hello
implicit none
print *, "Hello, World!"
end program hello
IDENTIFICATION DIVISION.
PROGRAM-ID. HELLO.
PROCEDURE DIVISION.
DISPLAY "Hello, World!".
END PROGRAM HELLO.
[<EntryPoint>]
let main _ =
printfn "Hello, World!"
0
HTML - script + style highlightingβ
See https://github.com/facebook/docusaurus/issues/9517
<html lang="en">
<head>
<script>
const name = 'Formidable';
console.log(name);
</script>
<style>
.some-class {
border: solid red thick;
}
</style>
</head>
</html>
Empty code blocks edge casesβ
Empty inline code block: ``
Single space inline code block:
Empty code block
Empty 1 line code block
Empty 2 line code block
Empty live code block