aboutsummaryrefslogtreecommitdiff
path: root/apps/docs/essentials/code.mdx
diff options
context:
space:
mode:
authorDhravya Shah <[email protected]>2025-01-31 15:42:02 -0700
committerDhravya Shah <[email protected]>2025-01-31 15:42:16 -0700
commitfeb3c34a967f9b6641d3017e2437ab4bc700da75 (patch)
tree59d59cdfdc361348dfbda3cd42ebd1a878ab1690 /apps/docs/essentials/code.mdx
parentadd api reference (diff)
downloadsupermemory-feb3c34a967f9b6641d3017e2437ab4bc700da75.tar.xz
supermemory-feb3c34a967f9b6641d3017e2437ab4bc700da75.zip
docs: v1
Diffstat (limited to 'apps/docs/essentials/code.mdx')
-rw-r--r--apps/docs/essentials/code.mdx37
1 files changed, 0 insertions, 37 deletions
diff --git a/apps/docs/essentials/code.mdx b/apps/docs/essentials/code.mdx
deleted file mode 100644
index d2a462a7..00000000
--- a/apps/docs/essentials/code.mdx
+++ /dev/null
@@ -1,37 +0,0 @@
----
-title: 'Code Blocks'
-description: 'Display inline code and code blocks'
-icon: 'code'
----
-
-## Basic
-
-### Inline Code
-
-To denote a `word` or `phrase` as code, enclose it in backticks (`).
-
-```
-To denote a `word` or `phrase` as code, enclose it in backticks (`).
-```
-
-### Code Block
-
-Use [fenced code blocks](https://www.markdownguide.org/extended-syntax/#fenced-code-blocks) by enclosing code in three backticks and follow the leading ticks with the programming language of your snippet to get syntax highlighting. Optionally, you can also write the name of your code after the programming language.
-
-```java HelloWorld.java
-class HelloWorld {
- public static void main(String[] args) {
- System.out.println("Hello, World!");
- }
-}
-```
-
-````md
-```java HelloWorld.java
-class HelloWorld {
- public static void main(String[] args) {
- System.out.println("Hello, World!");
- }
-}
-```
-````