When quoting content from an external source use the [EX] tags. Examples
http://www.brainyquote.com/quotes/quotes/j/johnavlon416087.html
[EX]A wingnut is someone on the far-right wing or far-left wing of the political spectrum - the professional partisans, the unhinged activists and the paranoid conspiracy theorists. They're the people who always try to divide rather than unite us.[/EX]
becomes
http://www.brainyquote.com/quotes/quotes/j/johnavlon416087.html
You might find it easier to click the button first, and then immediately post in the text you copied (the cursor will be in the right place).
When you quote an external source, always add a link if one is available, like:
http://en.wikipedia.org/wiki/Chemtrail_conspiracy_theory
The [article] format is a useful way of quoting a snippet from web page, and looks like this.
To do this by hand you use code like:
[article=https://wgxa.tv/news/beyond-the-podium/pipe-burst-at-state-farm-arena-causes-delay-in-absentee-vote-counts-in-fulton-county]FULTON COUNTY, Ga. -- According to Fox 5, Fulton County has a delay with processing and counting tens of thousands of absentee ballots due to a pipe break in the State Farm Arena.[/article]
However an easier way is to add a bookmarklet to your browser, with the following code
The simplest way to do this is to create a bookmark, then edit it, rename it to something like [article] and then copy in the code.
Then just highlight the text you want, and click the bookmarklet, and then paste into a post. Magic!
For quoting internal content (i.e. other posts on Metabunk), see:
https://www.metabunk.org/threads/how-to-quote-another-post-using-quote-tags.2561/[/EX]
http://www.brainyquote.com/quotes/quotes/j/johnavlon416087.html
[EX]A wingnut is someone on the far-right wing or far-left wing of the political spectrum - the professional partisans, the unhinged activists and the paranoid conspiracy theorists. They're the people who always try to divide rather than unite us.[/EX]
becomes
http://www.brainyquote.com/quotes/quotes/j/johnavlon416087.html
You can also EX something by selecting the text, and then clicking on the "External Quote" button in the tool bar (next to the quote button)External Quote:A wingnut is someone on the far-right wing or far-left wing of the political spectrum - the professional partisans, the unhinged activists and the paranoid conspiracy theorists. They're the people who always try to divide rather than unite us.
You might find it easier to click the button first, and then immediately post in the text you copied (the cursor will be in the right place).
When you quote an external source, always add a link if one is available, like:
http://en.wikipedia.org/wiki/Chemtrail_conspiracy_theory
ARTICLE TAGSExternal Quote:The chemtrail conspiracy theory posits that some trails left by aircraft are chemical orbiological agents deliberately sprayed at high altitudes for purposes undisclosed to the general public in clandestine programs directed by various government officials.[1] This theory is not accepted by the scientific community, which states that they are just normalcontrails, as there is no scientific evidence supporting the chemtrail theory.
The [article] format is a useful way of quoting a snippet from web page, and looks like this.
Article: FULTON COUNTY, Ga. -- According to Fox 5, Fulton County has a delay with processing and counting tens of thousands of absentee ballots due to a pipe break in the State Farm Arena.
To do this by hand you use code like:
[article=https://wgxa.tv/news/beyond-the-podium/pipe-burst-at-state-farm-arena-causes-delay-in-absentee-vote-counts-in-fulton-county]FULTON COUNTY, Ga. -- According to Fox 5, Fulton County has a delay with processing and counting tens of thousands of absentee ballots due to a pipe break in the State Farm Arena.[/article]
However an easier way is to add a bookmarklet to your browser, with the following code
JavaScript:
javascript:(function() {
function copyToClipboard(text) {
if (window.clipboardData && window.clipboardData.setData) {
/*IE specific code path to prevent textarea being shown while dialog is visible.*/
return clipboardData.setData("Text", text);
} else if (document.queryCommandSupported && document.queryCommandSupported("copy")) {
var textarea = document.createElement("textarea");
textarea.textContent = text;
textarea.style.position = "fixed"; /* Prevent scrolling to bottom of page in MS Edge.*/
document.body.appendChild(textarea);
textarea.select();
try {
return document.execCommand("copy"); /* Security exception may be thrown by some browsers.*/
} catch (ex) {
console.warn("Copy to clipboard failed.", ex);
return false;
} finally {
document.body.removeChild(textarea);
}
}
}
var markdown = '[article=' + window.location.href + ']'+window.getSelection().toString()+'[/article]';
copyToClipboard(markdown);
})();
The simplest way to do this is to create a bookmark, then edit it, rename it to something like [article] and then copy in the code.
Then just highlight the text you want, and click the bookmarklet, and then paste into a post. Magic!
For quoting internal content (i.e. other posts on Metabunk), see:
https://www.metabunk.org/threads/how-to-quote-another-post-using-quote-tags.2561/[/EX]
Last edited: