diff --git a/content/mdx-expression-test.mdx b/content/mdx-expression-test.mdx new file mode 100644 index 0000000..8f5bac8 --- /dev/null +++ b/content/mdx-expression-test.mdx @@ -0,0 +1,19 @@ +--- +title: MDX Expression Test +--- + +# Expression Test + +This page tests whether MDX expressions are executed by the renderer. + +## Arithmetic Expression + +The result of 1 + 1 is: {1 + 1} + +## typeof Expression + +The type of `window` in the browser is: {typeof window} + +## Array Expression + +The length of [1, 2, 3] is: {[1, 2, 3].length}