Lists:
First item
Second item
Third item
Bullet item one
Bullet item two
Bullet item three
Headings:
Left align text:
This is a normal paragraph. It should appear as plain body text inside your editor.
Center align text:
This text should be center aligned.
Right align text:
This text should be right aligned.
Justify text:
This paragraph is an example of text that has been justified. In justified text, spaces are added between words so that the text lines up perfectly along both the left and right margins, creating a smooth block of content. This style is commonly seen in newspapers, books, and formal documents to provide a clean and polished appearance across the entire page width.
Block quote:
Blockquotes are often rendered with a different background color, a vertical line on the left side, or a slight indentation to make them stand out. They are useful for quoting external sources, highlighting key definitions, or calling attention to a specific piece of information.
Bold:
Key Concept: Remember that all chemical reactions must be balanced.
Important Note: Please read the final chapter before the exam.
Emphasis: She said, "Absolutely not!"
Italic:
Italic text
Strikethrough:Strikethrough text
Italic + Strikethrough:Italic and strikethrough text
This text is underlined.
Subscript:
The chemical formula for water is H2O.
Superscript:
The equation is E = mc2
Special character text
• Bullet
– En dash
— Em dash
… Ellipsis
© Copyright
® Registered
™ Trademark
¶ Pilcrow
§ Section
† Dagger
‡ Double dagger
“Double Smart Quotes”
‘Single Smart Quotes’
« Guillemets »
‹ Single Guillemets ›
Link:
This is a Link.
Tables:
Property Type | Residential House |
|---|---|
Location | Copenhagen, Denmark |
Plot Size | 117 ft × 56 ft |
Total Bedrooms | 7 (3 Ground Floor + 4 First Floor) |
Bathrooms | 7 Attached |
Kitchens | 2 (1 Large, 1 Small) |
Special Features | Lift, Double-Height Hall, Lawn, Storeroom |
Code Block:
// Sample real estate property
const property = {
title: "Luxury Villa in Copenhagen",
type: "Residential House",
bedrooms: 7,
bathrooms: 7,
plotSize: "117ft × 56ft",
price: "DKK 5,200,000",
features: ["Lift", "Double-Height Hall", "Lawn", "Storeroom"]
};
// Function to display property info
function displayProperty(prop) {
console.log(`Property: ${prop.title}`);
console.log(`Type: ${prop.type}`);
console.log(`Bedrooms: ${prop.bedrooms}`);
console.log(`Bathrooms: ${prop.bathrooms}`);
console.log(`Plot Size: ${prop.plotSize}`);
console.log(`Price: ${prop.price}`);
console.log("Features: " + prop.features.join(", "));
}
// Display the property
displayProperty(property);
Image: