Isomer Guide (Legacy sites)
UpdatesOfficial WebsiteGithub Repository
  • Introduction
  • Accounts & Setup
    • Github Account Setup
      • Set up 2FA
    • Site Access
  • Get started
    • Your first edit
    • Create a new page
    • Create a new collection
    • Format your content
      • HTML cheatsheet
      • Markdown cheatsheet
    • Page config
  • Configurations
    • Config.yml file
      • Site color
    • Homepage
      • Basics
      • Hero Banner
      • Infobar
      • Infopic
      • Resources
      • Sample configuration
    • Pages
      • Configuration
      • Second and Third Level Navigation Pages
    • Navigation Bar
      • Configuration
    • Resources
      • Setup
      • Posts
      • Resources with v2 migration
    • Contact Us
      • Configuration
    • Footer
  • Features
    • Analytics and tracking
      • WOGAA
      • Google Analytics
      • Facebook Pixel
      • LinkedIn Insights
    • IsomerSSL
    • Content Recommender
  • Publish your changes
    • Overview
    • Creating a pull request
    • Approve a pull request
    • Merge a pull request
    • Site Launch
      • How to make records changes on ITSM?
  • Frequently Asked Questions (FAQ)
    • General
    • Security
    • Pull requests
    • Digital KPI
    • Migration v1 to v2
  • Updates
Powered by GitBook
On this page

Was this helpful?

  1. Get started
  2. Format your content

HTML cheatsheet

A list of useful guide on formatting your page using HTML

PreviousFormat your contentNextMarkdown cheatsheet

Last updated 4 years ago

Was this helpful?

Creating break lines

Sometimes you’ll encounter instances where lines are sticking together in one line even though it is correctly formatted in markdown.

For example, I could have the below text in markdown:

This is a line
with
break

But if you refer to the image below, the lines of texts are still on the same line.

To ensure your line breaks as intended, you'll have to add <br> html tag. You may do so in the following manners as shown below.

This is a line with <br>break

or

This is a line with
<br>break

Either way works fine. As you can see with the example below.