Markdown Online Tutorials

Markdown is a lightweight markup language for creating formatted text using a plain-text editor. John Gruber and Aaron Swartz created Markdown in 2004 as a markup language that is intended to be easy to read in its source code form. Markdown is widely used for blogging and instant messaging, and also used elsewhere in online forums, collaborative software, documentation pages, and readme files.

Markdown
Filename extensions
.md, .markdown
Internet media typetext/markdown
Uniform Type Identifier (UTI)net.daringfireball.markdown
Developed by
  • John Gruber
  • Aaron Swartz
Initial releaseMarch 9, 2004 (20 years ago) (2004-03-09)
Latest release
1.0.1
December 17, 2004 (19 years ago) (2004-12-17)
Type of formatOpen file format
Extended topandoc, MultiMarkdown, Markdown Extra, CommonMark, RMarkdown
Websitedaringfireball.net/projects/markdown/

The initial description of Markdown contained ambiguities and raised unanswered questions, causing implementations to both intentionally and accidentally diverge from the original version. This was addressed in 2014 when long-standing Markdown contributors released CommonMark, an unambiguous specification and test suite for Markdown.

History edit

Markdown was inspired by pre-existing conventions for marking up plain text in email and usenet posts, such as the earlier markup languages setext (c. 1992), Textile (c. 2002), and reStructuredText (c. 2002).

In 2002 Aaron Swartz created atx and referred to it as "the true structured text format". Gruber and Swartz created the Markdown language in 2004, with the goal of enabling people "to write using an easy-to-read and easy-to-write plain text format, optionally convert it to structurally valid XHTML (or HTML)."

Its key design goal was readability, that the language be readable as-is, without looking like it has been marked up with tags or formatting instructions, unlike text formatted with 'heavier' markup languages, such as Rich Text Format (RTF), HTML, or even wikitext (each of which have obvious in-line tags and formatting instructions which can make the text more difficult for humans to read).

Gruber wrote a Perl script, Markdown.pl, which converts marked-up text input to valid, well-formed XHTML or HTML and replaces angle brackets (<, >) and ampersands (&) with their corresponding character entity references. It can take the role of a standalone script, a plugin for Blosxom or a Movable Type, or of a text filter for BBEdit.

Rise and divergence edit

As Markdown's popularity grew rapidly, many Markdown implementations appeared, driven mostly by the need for additional features such as tables, footnotes, definition lists, and Markdown inside HTML blocks.

The behavior of some of these diverged from the reference implementation, as Markdown was only characterised by an informal specification and a Perl implementation for conversion to HTML.

At the same time, a number of ambiguities in the informal specification had attracted attention. These issues spurred the creation of tools such as Babelmark to compare the output of various implementations, and an effort by some developers of Markdown parsers for standardisation. However, Gruber has argued that complete standardization would be a mistake: "Different sites (and people) have different needs. No one syntax would make all happy."

Gruber avoided using curly braces in Markdown to unofficially reserve them for implementation-specific extensions.

Standardization edit

CommonMark
 
Filename extensions.md, .markdown
Internet media typetext/markdown; variant=CommonMark
Uniform Type Identifier (UTI)uncertain
UTI conformationpublic.plain-text
Developed byJohn MacFarlane, open source
Initial releaseOctober 25, 2014 (9 years ago) (2014-10-25)
Latest release
0.30
June 19, 2021 (2 years ago) (2021-06-19)
Type of formatOpen file format
Extended fromMarkdown
Extended toGitHub Flavored Markdown
Websitecommonmark.org spec.commonmark.org

From 2012, a group of people, including Jeff Atwood and John MacFarlane, launched what Atwood characterised as a standardisation effort. A community website now aims to "document various tools and resources available to document authors and developers, as well as implementors of the various Markdown implementations". In September 2014, Gruber objected to the usage of "Markdown" in the name of this effort and it was rebranded as CommonMark. CommonMark.org published several versions of a specification, reference implementation, test suite, and " to announce a finalized 1.0 spec and test suite in 2019."[28] No 1.0 spec has since been released as major issues still remain unsolved.[29] Nonetheless, the following websites and projects have adopted CommonMark: Discourse, GitHub, GitLab, Reddit, Qt, Stack Exchange (Stack Overflow), and Swift.

In March 2016 two relevant informational Internet RFCs were published:

  • RFC 7763 introduced MIME type text/markdown.
  • RFC 7764 discussed and registered the variants MultiMarkdown, GitHub Flavored Markdown (GFM), Pandoc, and Markdown Extra among others.[30]

Variants edit

Websites like Bitbucket, Diaspora, GitHub,[31] OpenStreetMap, Reddit,[32] SourceForge,[33] and Stack Exchange[34] use variants of Markdown to make discussions between users easier.

Depending on implementation, basic inline HTML tags may be supported.[35] Italic text may be implemented by _underscores_ or *single-asterisks*.[36]

GitHub Flavored Markdown edit

GitHub had been using its own variant of Markdown since as early as 2009,[37] which added support for additional formatting such as tables and nesting block content inside list elements, as well as GitHub-specific features such as auto-linking references to commits, issues, usernames, etc. In 2017, GitHub released a formal specification of its GitHub Flavored Markdown (GFM) that is based on CommonMark.[31] It is a strict superset of CommonMark, following its specification exactly except for tables, strikethrough, autolinks and task lists, which GFM adds as extensions.[38] Accordingly, GitHub also changed the parser used on their sites, which required that some documents be changed. For instance, GFM now requires that the hash symbol that creates a heading be separated from the heading text by a space character.

Markdown Extra edit

Markdown Extra is a lightweight markup language based on Markdown implemented in PHP (originally), Python and Ruby.[39] It adds the following features that are not available with regular Markdown:

  • Markdown markup inside HTML blocks
  • Elements with id/class attribute
  • "Fenced code blocks" that span multiple lines of code
  • Tables[40]
  • Definition lists
  • Footnotes
  • Abbreviations

Markdown Extra is supported in some content management systems such as Drupal,[41] Grav (CMS) and TYPO3.[42]

LiaScript edit

LiaScript[43] is a Markdown dialect that was designed to create interactive educational content. It is implemented in Elm and TypeScript and adds additional syntax elements to define features like:

  • Animations
  • Automatic speech output
  • Mathematical formulas (using KaTeX)
  • ASCII art diagrams
  • Various types of quizzes and surveys
  • JavaScript is natively supported and can be attached to various elements, this way code fragments can be made executable and editable

Examples edit

Text using Markdown syntax Corresponding HTML produced by a Markdown processor Text viewed in a browser
Heading
=======

Sub-heading
-----------

# Alternative heading

## Alternative sub-heading

Paragraphs are separated 
by a blank line.

Two spaces at the end of a line  
produce a line break.
<h1>Heading</h1>

<h2>Sub-heading</h2>

<h1>Alternative heading</h1>

<h2>Alternative sub-heading</h2>

<p>Paragraphs are separated
by a blank line.</p>

<p>Two spaces at the end of a line<br />
produce a line break.</p>
Heading
Sub-heading
Alternative heading
Alternative sub-heading

Paragraphs are separated by a blank line.

Two spaces at the end of a line
produce a line break.

Text attributes _italic_, **bold**, `monospace`.

Horizontal rule:

---
<p>Text attributes <em>italic</em>, <strong>bold</strong>, <code>monospace</code>.</p>

<p>Horizontal rule:</p>

<hr />
Text attributes italic, bold, monospace.

Horizontal rule:


Bullet lists nested within numbered list:

  1. fruits
     * apple
     * banana
  2. vegetables
     - carrot
     - broccoli
<p>Bullet lists nested within numbered list:</p>

<ol>
  <li>fruits <ul>
      <li>apple</li>
      <li>banana</li>
  </ul></li>
  <li>vegetables <ul>
      <li>carrot</li>
      <li>broccoli</li>
  </ul></li>
</ol>
Bullet lists nested within numbered list:
A [link](http://example.com).

![Image](Icon-pictures.png "icon")

> Markdown uses email-style
characters for blockquoting.
>
> Multiple paragraphs need to be prepended individually.

Most inline <abbr title="Hypertext Markup Language">HTML</abbr> tags are supported.
<p>A <a href="http://example.com">link</a>.</p>

<p><img alt="Image" title="icon" src="Icon-pictures.png" /></p>

<blockquote>
<p>Markdown uses email-style characters for blockquoting.</p>
<p>Multiple paragraphs need to be prepended individually.</p>
</blockquote>

<p>Most inline <abbr title="Hypertext Markup Language">HTML</abbr> tags are supported.</p>
A link.

 

Markdown uses email-style characters for blockquoting.

Multiple paragraphs need to be prepended individually.

Most inline HTML tags are supported.

Implementations edit

Implementations of Markdown are available for over a dozen programming languages; in addition, many applications, platforms and frameworks support Markdown.[44] For example, Markdown plugins exist for every major blogging platform.[45]

While Markdown is a minimal markup language and is read and edited with a normal text editor, there are specially designed editors that preview the files with styles, which are available for all major platforms. Many general-purpose text and code editors have syntax highlighting plugins for Markdown built into them or available as optional download. Editors may feature a side-by-side preview window or render the code directly in a WYSIWYG fashion.

Some apps, services and editors support Markdown as an editing format, including:

  • Bugzilla uses a customized version of Markdown.[46]
  • ChatGPT: Output from the AI model formatted in Markdown will be rendered in LaTeX and HTML by the ChatGPT client, and the model is encouraged to use Markdown to format its output. Markdown provided by the user will not be formatted by the client, but will still be passed to the AI model unaltered.
  • Discord: chat messages[47]
  • Discourse uses the CommonMark flavor of Markdown in the forum post composer.
  • Doxygen: a source code documentation generator which supports Markdown with extra features[48]
  • GitHub Flavored Markdown (GFM) ignores underscores in words, and adds syntax highlighting, task lists,[49] and tables[31]
  • The GNOME Evolution email client supports composing messages in Markdown format,[50] with the ability to send and render emails in pure Markdown format (Content-Type: text/markdown;) or to convert Markdown to plaintext or HTML email when sending.
  • Joplin: a note-taking application that supports markdown formatting[51]
  • JotterPad: an online WYSIWYG editor that supports Markdown and Fountain[52]
  • Kanboard uses the standard Markdown syntax as its only formatting syntax for task descriptions.[53]
  • Microsoft Azure DevOps' wiki feature has its own implementation[54]
  • Microsoft Teams: chat messages[55]
  • Misskey, its numerous forks and other Fediverse platforms such as Akkoma[56] use a custom Markdown format, with support for mentions, tags, automatic URL detection and preview, custom emoji, furigana, specifying a font family, text blurring, search boxes, adding borders and transformations such as flipping, shifting, rotating, scaling, animating.[57] Since ActivityPub objects that can be consumed as messages at such microblogging platforms need to specify a message format, in this case text/x.misskeymarkdown needs to be used. Most clients will either store the default or mostly recently used formatting in the session or settings storage, so this needs not to be manually specified for each message.
  • The Mozilla Thunderbird email client supports Markdown through the "Markdown here Revival" add-on.
  • Nextcloud Notes: the default app for taking notes on the Nextcloud platform supports formatting using Markdown[58]
  • Obsidian is note-taking software based on Markdown files.[59]
  • RMarkdown[60]
  • RStudio: an IDE for R. It provides a C++ wrapper function for a markdown variant called sundown[61]
  • Simplenote[62]

See also edit

  • Comparison of document markup languages
  • Comparison of documentation generators
  • Lightweight markup language
  • Wiki markup

Explanatory notes edit

  1. ^ Technically HTML description lists

Markdown Tutorials: Markdown is a plain text formatting syntax designed so that it can be converted to HTML using a tool by the same name. Markdown is often used to format readme files, for writing messages in online discussion forums, and to create rich text using a plain text editor.

Latest online Markdown Tutorials with example so this page for both freshers and experienced candidate who want to get job in Markdown company

Latest online Markdown Tutorials for both freshers and experienced

advertisements

View Tutorials on Markdown View all questions

Ask your interview questions on Markdown

Write Your comment or Questions if you want the answers on Markdown from Markdown Experts
Name* :
Email Id* :
Mob no* :
Question
Or
Comment* :
 





Disclimer: PCDS.CO.IN not responsible for any content, information, data or any feature of website. If you are using this website then its your own responsibility to understand the content of the website

--------- Tutorials ---