How to post links with Tumblr in the Article Scraper Plugin in 1.x and 2.0 versions of Scrapebox?

How to post links with Tumblr in the Article Scraper Plugin in 1.x and 2.0 versions of Scrapebox?

***Unfortunatley Tumblr removed the ability to post via email, which is what scrapebox used.  So at this time Tumblr posting is no longer supported***

 

Tumblr supports markdown when posting with the article scraper plugin, as the article scraper posts via email.  More info on tumblrs email support here:

https://www.tumblr.com/docs/en/posting#emailpostheader

Here is more info on Markdown:

Links

Markdown supports two styles for creating links: inline and reference. With both styles, you use square brackets to delimit the text you want to turn into a link.

Inline-style links use parentheses immediately after the link text. For example:

This is an [example link](http://example.com/).

Output:

<p>This is an <a href="http://example.com/">
example link</a>.</p>

Optionally, you may include a title attribute in the parentheses:

This is an [example link](http://example.com/ "With a Title").

Output:

<p>This is an <a href="http://example.com/" title="With a Title">
example link</a>.</p>

Reference-style links allow you to refer to your links by names, which you define elsewhere in your document:

I get 10 times more traffic from [Google][1] than from
[Yahoo][2] or [MSN][3].

[1]: http://google.com/        "Google"
[2]: http://search.yahoo.com/  "Yahoo Search"
[3]: http://search.msn.com/    "MSN Search"

Output:

<p>I get 10 times more traffic from <a href="http://google.com/"
title="Google">Google</a> than from <a href="http://search.yahoo.com/"
title="Yahoo Search">Yahoo</a> or <a href="http://search.msn.com/"
title="MSN Search">MSN</a>.</p>

The title attribute is optional. Link names may contain letters, numbers and spaces, but are not case sensitive:

I start my morning with a cup of coffee and
[The New York Times][NY Times].

[ny times]: http://www.nytimes.com/

Output:

<p>I start my morning with a cup of coffee and
<a href="http://www.nytimes.com/">The New York Times</a>.</p>

From https://daringfireball.net/projects/markdown/basics

This entry was posted in Uncategorized. Bookmark the permalink.