BrowserPAD

Created by Tim Uhl

Last updated: 03/30/2024

This online editor allows you to load, save, and edit text files in the browser

BrowserPAD can also bidirectionally convert Markdown to/from HTML.

All of your text is kept locally on your own machine and does not get sent out to the Internet, making it impossible for anyone to get hold of it. Furthermore, cookies are not created nor read so your anonymity is secure.

This utility uses the marked javascript Markdown rendering engine: https://github.com/markedjs/marked (latest version is v12.0.1)

This utility uses the Turndown javascript HTML-to-Markdown rendering engine: https://github.com/mixmark-io/turndown (latest version is v7.1.3)

Markdown Quick Reference

Headers

# Header level 1
## Header level 2
...
###### Header level 6

or

Header level 1
==============

Header level 2
--------------

Text Effects:

Emphasis, aka italics: *asterisks* or _underscores_

Emphasis, aka italics: asterisks or underscores

Strong emphasis, or bold: **asterisks** or __underscores__

Strong emphasis, or bold: asterisks or underscores

*italicized with __bold__*

italicized with bold

__bold with *italicized*__

bold with italicized

~~strikethrough~~ uses two tildes

strikethrough uses two tildes

Unordered Lists:

- first item in unordered list
* second item
+ third item
   - subitem 1
   * subitem 2

Ordered Lists:

1. first item in ordered list
2. second item in ordered list
   - Unordered sub-list
   - second item of un-ordered sub-list
3. third item in ordered list
  1. first item in ordered list
  2. second item in ordered list
  3. third item in ordered list

Links:

Link with URL as text: <https://www.google.com>
Inline style link: [Google](https://www.google.com)
Inline style link with title: [Google](https://www.google.com "Search")

Inline and blocks of code:

Inline `code` has back-ticks around it.

```
3 back-ticks
are used for blocks of
pre-formatted inline code.
This is call a "Fenced Code Block"
```
Alternatively:
    You can indent by at least
    four spaces to create
    an "Indented Code Block"

Block quotes:

> "To be or not
> to be"  - W. Shakespeare
> > Second level of blockquote
> > > level three

"To be or not to be" - W. Shakespeare

Second level of blockquote

level three

Tables:

heading1 | heading2
-------- | --------
 ABCDEF  |  GHIJKL 
 MNOPQR  |  STUVWX 
heading1heading2
ABCDEF GHIJKL
MNOPQR STUVWX

Horizontal Rule:

---

Images:

!\[Alt text](/path/to/img.jpg)
![Alt text](/path/to/img.jpg \"Lovely picture\")

Comments which do not appear in generated HTML:

[//]: # (This is a platform independent comment - make sure there is a blank line preceding)

Escapable characters include:

\ ` * _ { } [ ] ( ) # + - . !