Help – Simplenote

Help

Help Center


Tips & Tricks

Is there a way to import my notes?

Yes. You can now import notes into our desktop app for Windows, Linux, and macOS*. To get started, select File > Import Notes from the app menu, then pick the type of notes you will be importing.

You can also import from our web app! When logged in, click the menu on the top left corner (three horizontal lines), then click on Settings and choose the Tools tab. Finally, click on Import Notes.

The options are:

  • Simplenote exports (.json)
  • Plain text files, including Markdown files (.txt or .md)
  • Evernote export (.enex — only supported in the desktop app)

You can browse the notes you want to import or drag and drop a file into the import window. The app takes care of the rest. If you’re importing notes with Markdown formatting and you’d like to keep them that way, check the Enable Markdown on all notes box and they’ll be automatically configured as Markdown notes in Simplenote.

Note: The import tool will import all content in the export file as new notes. It will not merge new changes to existing notes or ignore duplicate notes under your Simplenote account.

*A quick note, Mac users! To use the importer, make sure you’re using the Electron version of the app, available here. The standard version of the app available in the Mac App Store doesn’t support importing yet.

Is there some way to export my notes?

You can export your data, including notes and tags, from the web, Android, and desktop apps for Windows, Linux and macOS*.

Web

You can backup your notes by exporting them from our web app. When logged in, click the menu on the top left corner (three horizontal lines), then click on Settings and choose the Tools tab. Finally, click on Export Notes.

Android

You can export your notes from the Android app by opening the navigation drawer, tapping the Settings item in the drawer, and tapping the Export data option under the Account section. You will be shown the system file explorer where you can choose to save your data locally or remotely via services like Google Drive if you have a Google account on the device. You will also be able to edit the file name, which is simplenote.json by default.

Desktop app (Linux, Windows, macOS*)

You can also export notes in the desktop app at File > Export Notes. Either method will download a .zip file of all your notes. The filename for each individual note is the first line of the note.

*To export notes on macOS, make sure you’re using the Electron version of the app, available here. The standard version of the app available in the Mac App Store doesn’t support exporting yet.

How can I add a checklist?

On our mobile apps, you’ll find a new button in the editor toolbar to add a checklist. On Desktop, head to Format → Insert Checklist. Nested Checklists are also supported, in case you need an extra level of organization.

How can I share a note or collaborate with others?

If you’d like others to view and edit one of your notes, add their email address as a tag. The shared note will then pop up in their list of notes. They’ll need to have their own Simplenote account first. Similarly, if you’d like to work on a note together, have them add your email address as a tag to collaborate. In the iOS app, instead of adding your email address as a tag, you can tap the Info panel icon when viewing a note, then tap Collaborate.

If you’d like to share a view-only version, you can use the publish to web feature.

How can I change the language?

You can change the language on Android and iOS by changing it from your device settings. At the moment Simplenote is not localized in Linux, Windows, or on the web.

What are the keyboard shortcuts available?

There are keyboard shortcuts for our Android, Electron (Linux, Windows), and macOS apps.

Android

Tap Ctrl  , to see a list of shortcuts available on the current screen. A list of all shortcuts is below.

New NoteCtrl  Shift  I
Open SearchCtrl  Shift  S
Toggle ChecklistCtrl  Shift  C
Toggle PreviewCtrl  Shift  P
Toggle ListCtrl  Shift  L
Show InformationCtrl  I
Show HistoryCtrl  H
Show ShareCtrl  S
Show ShortcutsCtrl  ,
Electron (Linux, Windows)

Type Ctrl / to view all shortcuts. Here are some common ones:

New NoteCtrl Shift I
Search NotesCtrl Shift S
Insert a checklist itemCtrl Shift C
Toggle focus modeCtrl Shift F
Toggle Markdown previewCtrl Shift P
Increase font sizeCtrl  +
Decrease font sizeCtrl  -
Reset font sizeCtrl  0
Show keyboard shortcutsCtrl /
macOS
New NoteCommand  N
Print NoteCommand  P
Move focus to search fieldCommand  L
Increase font sizeCommand  +
Decrease font sizeCommand  -
Reset font sizeCommand  0
Delete noteShift Command Backspace

Notes

Can I print my notes?

Yes! You can print your notes using our web, Android, Electron (Linux, Windows), iOS, and macOS apps.

Open your browser printing options and choose the option to print the selection. Different browsers will offer different options for this.

Open your note, and publish it to web. Open the link in your browser (might differ depending on your browser app), and Share the link. You will see “Print” as an option.

Open your note and use the File -> Print menu option or Ctrl P.

Open your note, click on the Info in the panel, and select “Send.” You will see “Print” as an option.

Open Simplenote, and click on the “Note” settings. You will see the option to Print your note using your system’s preferences.

How does syncing work?

All notes are synced between your device, the web app, and any desktop apps that you might have downloaded. When you create, edit, or delete notes in any of these locations, they automatically and wirelessly sync to the other locations as well as soon as you open the app.

Yes, you can search your notes even when you’re offline using Simplenote for Android, Linux Windows, iOS, and macOS apps. You can even search on app.simplenote.com when you’re offline, as long as you have logged into the app while online.

Can I use Markdown?

Yes! Markdown is supported on our web, Android, Electron (Linux, Windows), and iOS apps.

Web

Open a note for editing then select the Actions icon (the icon with three dots in a circle at the very top of the screen) and then check the option next to “Markdown”.

Android

You can enable and disable Markdown on a per-note basis by tapping the ellipsis action in the top app bar while viewing a note and tapping the Markdown checkbox. Simplenote Android will remember the last time you enabled or disabled Markdown on a note and apply that setting when notes are created.

Markdown on Android does not support HTML tags. Entering something like , ,
, or will show the tag exactly as it is written and not formatted. The supported syntax is shown below.

To use single spacing, add two spaces ( ) followed by one new line to the end of a line. To use double spacing, add two new lines to the end of a line.

To create a heading, add number signs (#) in front of a word or phrase. The number of number signs you use should correspond to the heading level.

# Heading 1
## Heading 2
### Heading 
#### Heading 4
##### Heading 5

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5

To bold text, add two asterisks (**) or underscores (__) before and after a word or phrase. To italicize text, add one asterisk (*) or underscore (_) before and after a word or phrase. To emphasize text with bold and italics at the same time, add any combination of three asterisks (***) or underscores (___) before and after a word or phrase.

**Bold**
*Italic*
_Italic_
***Bold/Italic***
_**Bold/Italic**_
__*Bold/Italic*__
___Bold/Italic___

Bold
Italic
Italic
Bold/Italic
Bold/Italic
Bold/Italic
Bold/Italic

To create a blockquote, add a chevron pointing right (>) in front of a paragraph.

> Blockquote

Blockquote

To denote a word or phrase as code inline with other text, enclose it in backticks (`).

`Code Inline`

Code Inline

To create code blocks, add three backticks (```) before and after the block of text. Alternatively, indent every line of the block by at least four spaces ( ) or one tab.

```
Code Block
```
Code Block
    Code Block
Code Block

To create an unordered list, add dashes (-), plus signs (+), asterisks (*), or bullet points () in front of line items.

- Dash 1
- Dash 2
- Dash 3
  • Dash 1
  • Dash 2
  • Dash 3
+ Plus 1
+ Plus 2
+ Plus 3
  • Plus 1
  • Plus 2
  • Plus 3
* Asterisk 1
* Asterisk 2
* Asterisk 3
  • Asterisk 1
  • Asterisk 2
  • Asterisk 3
• Bullet 1
• Bullet 2
• Bullet 3
  • Bullet 1
  • Bullet 2
  • Bullet 3

To create a checklist, add a dash (-), space ( ), and square brackets ([]) surrounding a space ( ) or x (x) in front of the items.

- [x] Checked 1
- [x] Checked 2
- [x] Checked 3
- [ ] Unchecked 1
- [ ] Unchecked 2
- [ ] Unchecked 3

To create an ordered list, add line items with numbers followed by periods.

1. Ordered 1
2. Ordered 2
3. Ordered 3
  1. Ordered 1
  2. Ordered 2
  3. Ordered 3

To create a table, use three or more hyphens (---) to create each column’s header, and use pipes (|) with a space ( ) on each side of the pipes to separate each column.

Header 1 | Header 2
--- | ---
Row 1 Column 1 | Row 1 Column 2
Row 2 Column 1 | Row 2 Column 2
Header 1Header 2
Row 1 Column 1Row 1 Column 2
Row 2 Column 1Row 2 Column 2

To create a horizontal rule, use three or more asterisks (***), dashes (---), or underscores (___) on a line by themselves.

***
---
___

To create a link, enclose the link text in brackets (e.g., [Link]) and then follow it immediately with the URL in parentheses (e.g., (https://simplenote.com)).

[Link](https://simplenote.com)

Link

To create an image, put an exclamation mark (!) before the enclosed image text in brackets (e.g., ![Image]) and then follow it immediately with the URL in parentheses (e.g., (https://cldup.com/DqxSeQlvga.png)).

![Image](https://cldup.com/DqxSeQlvga.png)
Image
Electron (Linux, Windows)

First, enable it on your note by selecting the Info panel icon and toggle the Markdown setting.

To get started with text formatting, check out the basics. Here’s a small sampling of what you can do with Markdown:

# heading 1
## heading 2
### heading 3
_Italics_
**Bold**
**_Italics and Bold_**
Links: [Simplenote](https://simplenote.com/)

Lists:

– Thing 1
– Thing 2
– Thing 3

Embed an image:
![alt](https://path_to_image.png)

iOS

Click on the Info panel icon and toggle the markdown setting. Once enabled, you can swipe left to preview your markdown notes, and swipe right to continue editing.

How does publishing work?

Publishing notes is a way to share notes on the web for others to read. You can use the new info panel to publish a note to the web. Just tap the Info panel icon when viewing a note, then tap Publish. Within seconds you’ll be able to share a link to get the word out. To publish a note using the web app, click on the ellipsis icon and then click on Publish.

What’s the maximum length of a note?

You can create very long notes if you absolutely have to, but we don’t recommend making notes longer than several thousand words. Huge notes can take a long time to process both in the web app and on your device.

You can break long notes up into multiple notes and link between them using internal links.

How many notes can I make?

We don’t currently place any restrictions on the number of notes you can make, as long as you’re not abusing the system.

Internal links allow you to link to one note from within another note. You can read more about how to use them on this blog post: https://simplenote.com/2020/11/03/introducing-internal-links/

Troubleshooting

I accidentally deleted a note. Can I recover it?

Yes, all deleted notes go into your Trash. To see the notes that are in your Trash, you need to view the “Trash” tag. On Android and iOS, simply return to your main notes list and open the tags drawer. You’ll see “Trash” below the “All Notes” row. In the web app, hover over the tag in your note list, and select Trash.

When viewing your Trash, you can choose to restore a previously deleted note by swiping from right to left on the note then by tapping “restore.” It will then appear back inside All Notes.

I lost a note or some text from a note. What can I do?

In the vast majority of cases, Simplenote’s synchronization works great. We handle millions of synchronization requests each day without any problems. But if you do lose your data, even just a single character, and even if it’s not our fault, we want to hear about it. The integrity of your notes is our top priority. Any form of data loss is completely unacceptable.

The first thing is to check the note history, most Simplenote apps support viewing previous versions of a note. Be sure to check the history of any blank or duplicate notes you can see. Most of the time you will find your content there. If not, you may want to check the Trash and restore the note from there. Notes put in the Trash still retain their version history.

We’re in the process of adding additional safeguards and fallback measures for your notes. Please contact us regarding any form of data loss and try to provide as many details as you can remember about the circumstances that caused the problem so we can ensure it won’t happen again in the future.

Security

Are my notes encrypted in storage?

In terms of security, Simplenote works a lot like other popular online services such as Gmail and Facebook. Your personal information is protected by a strict Privacy Policy. Notes are not encrypted at rest due to server side constraints. For this reason we recommend not using Simplenote to store anything particularly sensitive.

Unlike a lot of other services, however, by default your notes in Simplenote are always encrypted when they’re in transit across a network. This is important. It’s when your personal information is most vulnerable. We believe that all modern services should provide this level of protection by default.

You have my email address…

We respect the privacy of our users, and we’ll never give email addresses to third parties.

Does Simplenote encrypt my notes during synchronization?

Yes, this is important! Don’t settle for anything less. Nonetheless, we discourage users from storing extremely sensitive information such as passwords, bank account information, or social security numbers. Please see our Privacy Policy if you have any concerns.

Information

How can I contact you?

If the information on this page doesn’t answer your questions please contact us here!

How much does Simplenote cost?

Simplenote is a free service provided by your friends at Automattic.

What happened to Dropbox support?

Simplenote no longer supports Dropbox sync.

Account

I forgot my password. What do I do?

To reset your password, visit app.simplenote.com/forgot. Enter your email address there and a password reset link will be sent to you.

Can I close my account?

Yes, this can be done via the Simplenote web app only:

Sign in to the web app and go to your account settings. You’ll find an option there to delete your Simplenote account.

Please note that all your notes will be permanently deleted, and your account details (like your email address) will be purged. If you’d like to keep a copy of your notes, we recommend you export them before closing your account.

How do I change the email address I use to sign in?

You can change your email address by visiting the Settings page in the web app. At the top, you’ll see your address along with a “change” link. Click that link and you’ll be able to enter your new address. A confirmation email will be sent to your old address.