Docs

Emore Notes - Documentation

Emore Notes is a great helper for organizing your schedule and notes. It gives you a quick and easy notepad editing experience when you write notes, memos, emails, messages, to-do lists, and assignment lists.


Usage

Use this example to create a default unordered list of items

  1. 1

    Click add/edit notes button

    After clicking the add/edit button, a modal with the input title and notes will show up.

  2. 2

    Write the title and description

    We can use the code command in the description box to achieve the desired text styling.

Bulleted List

Use this example to create a default unordered list of items

  • items 1
  • items 2
  • items 3

HTML

                
<ul>
  <li class="list-disc list-inside">items 1</li>
  <li class="list-disc list-inside">items 2</li>
  <li class="list-disc list-inside">items 3</li>
</ul>
                
              

Italicizing Text

Use this example to make italic text

Lorem ipsum dolor sit amet, consectetur adipiscing elit

HTML

                
<i>Lorem ipsum dolor sit amet, consectetur adipiscing elit</i>
                  
                

Bold Text

Use this example to make bold text

Lorem ipsum dolor sit amet, consectetur adipiscing elit

HTML

                        
<b>Lorem ipsum dolor sit amet, consectetur adipiscing elit</b>
                  
                        

Underline Text

Use this example to make underline text

Lorem ipsum dolor sit amet, consectetur adipiscing elit

HTML

                
<u>Lorem ipsum dolor sit amet, consectetur adipiscing elit</u>
                
              

Center Text

Use this example to make center text

Lorem ipsum dolor sit amet, consectetur adipiscing elit

HTML

                
<center>Lorem ipsum dolor sit amet, consectetur adipiscing elit </center>
                
              

Right Text

Use this example to make right text

Lorem ipsum dolor sit amet, consectetur adipiscing elit


HTML

                
                
<p class="float-right">Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>

Images

Use this example to add a image

image

HTML

                
<img src="_url_image_" alt="image"/>
<!-- example: <img src="https://image.jpg" alt="image"/>-->