added detail to readme
parent
5e35a03855
commit
3e4cbbf077
22
readme.md
22
readme.md
|
@ -17,3 +17,25 @@ Response:
|
||||||
|
|
||||||
[Join Firefox](https://accounts.firefox.com/signup?entrypoint=mozilla.org-firefox_home&form_type=button&utm_source=mozilla.org-firefox_home&utm_medium=referral&utm_campaign=firefox-home&utm_content=secondary-join-firefox) [Learn more about joining Firefox](https://www.mozilla.org/en-GB/firefox/accounts/)
|
[Join Firefox](https://accounts.firefox.com/signup?entrypoint=mozilla.org-firefox_home&form_type=button&utm_source=mozilla.org-firefox_home&utm_medium=referral&utm_campaign=firefox-home&utm_content=secondary-join-firefox) [Learn more about joining Firefox](https://www.mozilla.org/en-GB/firefox/accounts/)
|
||||||
|
|
||||||
|
Inspired by [Heck Yeah Markdown](http://heckyesmarkdown.com)
|
||||||
|
|
||||||
|
## Also of interest:
|
||||||
|
|
||||||
|
A bookmarklet for SimpleNote on iOS/iPadOS (based on [simpleclip](https://gist.github.com/byrney/b21456682e77a0d51708)):
|
||||||
|
|
||||||
|
```
|
||||||
|
javascript:(
|
||||||
|
function()
|
||||||
|
{
|
||||||
|
var request=new XMLHttpRequest();
|
||||||
|
var url="https://urltomarkdown.herokuapp.com/?url="+encodeURIComponent(location.href);
|
||||||
|
request.onreadystatechange=function() {
|
||||||
|
if(request.readyState==4&&request.status==200) {
|
||||||
|
location.href="simplenote://new?content="+encodeURIComponent(request.responseText);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
request.open("GET",url, true);
|
||||||
|
request.send();
|
||||||
|
}
|
||||||
|
)();
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in New Issue