Science Labs

Tasks
  • Pomodoro Timer
  • Keyboard Typing
  • URL Preview
  • Markdown Preview
  • JSON Formatter
  • Text Diff
Logic
  • Boolean Algebra
1

Markdown Editor

This is a markdown preview with support for:

KaTeX Math

(ab cd)⋅(x y)=(ax+by cx+dy)\begin{pmatrix} a & b \ c & d \end{pmatrix} \cdot \begin{pmatrix} x \ y \end{pmatrix} = \begin{pmatrix} ax + by \ cx + dy \end{pmatrix}(a​b c​d​)⋅(x y​)=(ax+by cx+dy​)

Mermaid Diagrams

graph TD A[Enter Chart Definition] --> B(Preview) B --> C{decide} C --> D[Keep] C --> E[Edit Definition] E --> B D --> F[Save Image and Code] F --> B
sequenceDiagram Alice->>John: Hello John, how are you? John-->>Alice: Great! Alice-->>John: See you later!

Tables

NameTypeDescriptionDefault
idstringUnique identifierauto-generated
titlestringDisplay title""
isActivebooleanWhether item is activefalse
countnumberNumber of items0
tagsstring[]List of associated tags[]

Code Highlighting

function greet(name: string): string {
  return `Hello, ${name}!`;
}

console.log(greet("world"));