This is a Heading 2
This is a Heading 3
This is a Heading 4
This is a Heading 5
This is a Heading 6
This is normal text
- This is an ordered list
- This continues that list
- This is an unordered list
- This continues that list
- This is a checklist
- This is item 2 on the checklist
This is a blockquote
This is text that is aligned Left
This is text that is aligned Center
This is text that is aligned Right
This paragraph is justified. At Humanitas Institute, we believe in the renewal of classical education. By equipping parents, teachers, and communities, we’re fostering a movement that shapes both the heart and the mind—helping children, families, and schools flourish for generations to come.
This paragraph adding the left margin - tabbed right. At Humanitas Institute, we believe in the renewal of classical education. By equipping parents, teachers, and communities, we’re fostering a movement that shapes both the heart and the mind—helping children, families, and schools flourish for generations to come.
|
This is a table header |
This is a column header |
|---|---|
|
This is a row header |
This works |
This is inline code
#!/usr/bin/env bash
echo "Deploying site..."
npm run build
rsync -avz dist/ user@server:/var/www/site
echo "Done."
type User = {
id: number;
name: string;
};
function greet(user: User): string {
return `Hello, ${user.name}`;
}
console.log(greet({ id: 1, name: "Jason" }));
function greet(name) {
return `Hello, ${name}`;
}
console.log(greet("World"));
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Example</title>
</head>
<body>
<h1>Hello world</h1>
</body>
</html>
body {
font-family: system-ui, sans-serif;
margin: 0;
padding: 2rem;
}
h1 {
color: #333;
}
def greet(name: str) -> str:
return f"Hello, {name}"
print(greet("World"))