Skip to content

Commit

Permalink
fix: disable on mobile devices
Browse files Browse the repository at this point in the history
  • Loading branch information
David GABISON committed Aug 30, 2023
1 parent 3fb085f commit 42bc9af
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This Obsidian plugin allows you to preview in your note the content of a `*.eml` file as like as you can preview image with `*.png` or `*.jpg` file.

==Does not compatible with mobile devices==

## Use cases

In my daily use of Obsidian, I sometimes need to insert information from an email.
Expand Down Expand Up @@ -36,7 +38,7 @@ Allows you to import an `*.eml` file, transform it into markdown according to a

You can improve the result with the plugin [Email Block](obsidian://show-plugin?id=email-block-plugin)

The advantage is that the content of the email appears directly in your obsidian raw note and is therefore searchable in the global Obsidian search.
The advantage is that the content of the email appears directly in your obsidian raw note and is therefore searchable in the global Obsidian search. the result is viewabl on mobile device.

The downside is the same : _the content of the email appears directly in your note_.

Expand Down
4 changes: 2 additions & 2 deletions manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"name": "Email Reader",
"version": "1.0.0",
"minAppVersion": "0.15.0",
"description": "This plugin provide a preview mode for attachments of `*.eml` files.",
"description": "Provide a preview mode for embeded `*.eml` files.",
"author": "Pulsovi",
"authorUrl": "https://marchev.fr",
"fundingUrl": "https://www.buymeacoffee.com/pulsovi",
"isDesktopOnly": false
"isDesktopOnly": true
}
1 change: 0 additions & 1 deletion src/Email.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { encode as textToBase64 } from 'js-base64';
import { simpleParser as mailparser } from 'mailparser';
import { nanoid } from 'nanoid';
import { MarkdownRenderChild } from 'obsidian';
import type { App, MarkdownPostProcessorContext, TFile } from 'obsidian';
Expand Down

0 comments on commit 42bc9af

Please sign in to comment.