Markdown: Difference between revisions
No edit summary |
|||
(15 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
'''Markdown''' is a lightweight markup language for creating formatted text. | '''Markdown''' is a lightweight markup language for creating formatted text. | ||
It is used in [[ContactsLaw]] for | It is used in [[ContactsLaw]] for notes (associated with [[contact|contacts]], [[matter|matters]], etc) as well as in [[Document Template|document templates]]. | ||
One of the principal reasons for using Markdown (as opposed to other representations, such as [[wikipedia:Rich_Text_Format|Rich Text Format]] or [[wikipedia:HTML|HTML]]) is that it separates '''markup''' (paragraphs, lists, headings, etc) from '''style''' (colours, fonts, etc). This means that the same content can be displayed in different ways without affecting its semantics. This is particularly useful in [[document production]] as the author of the template does not need to be aware of any [[business]]-specific branding or design and, indeed, these can be altered freely without affecting [[Document Template|content specifications]]. | One of the principal reasons for using Markdown (as opposed to other representations, such as [[wikipedia:Rich_Text_Format|Rich Text Format]] or [[wikipedia:HTML|HTML]]) is that it separates '''markup''' (paragraphs, lists, headings, etc) from '''style''' (colours, fonts, etc). This means that the same content can be displayed in different ways without affecting its semantics. This is particularly useful in [[Create Document|document production]] as the author of the template does not need to be aware of any [[business]]-specific branding or design and, indeed, these can be altered freely without affecting [[Document Template|content specifications]]. | ||
The [[Desktop App]] provides a {{abbr|what you see is what you get|WYSIWYG}} editor, such that users do not need to learn the Markdown syntax. The [[Web App]], however, requires Markdown to be entered directly, displaying a separate preview of the formatting. | The [[Desktop App]] provides a {{abbr|what you see is what you get|WYSIWYG}} editor, such that users do not need to learn the Markdown syntax. The [[Web App]], however, requires Markdown to be entered directly, displaying a separate preview of the formatting. | ||
Line 19: | Line 19: | ||
| | | | ||
|- | |- | ||
|<code>*Italic*</code><code>_Italic_</code> | |<code>*Italic*</code> or <code>_Italic_</code> | ||
|''Italic'' | |''Italic'' | ||
| | | | ||
Line 29: | Line 29: | ||
|<code># Heading 1</code> | |<code># Heading 1</code> | ||
| | | | ||
<xh1>Heading 1</xh1> | |||
| | | | ||
|- | |- | ||
|<code>## Heading 2</code> | |<code>## Heading 2</code> | ||
| | | | ||
<xh2>Heading 2</xh2> | |||
| | | | ||
|- | |- | ||
|<code>### Heading 3</code> | |<code>### Heading 3</code> | ||
| | | | ||
<xh3>Heading 3</xh3> | |||
| | | | ||
|- | |- | ||
|<code>#### Heading 4</code> | |<code>#### Heading 4</code> | ||
| | | | ||
<xh4>Heading 4</xh4> | |||
|Depending on the destination, up to 6 heading styles may be available. | |Depending on the destination, up to 6 heading styles may be available. | ||
|- | |- | ||
Line 74: | Line 74: | ||
|- | |- | ||
|<code>---</code> | |<code>---</code> | ||
| | |<hr /> | ||
|Horizontal line/separator. | |Horizontal line/separator. | ||
|} | |} | ||
Line 80: | Line 80: | ||
== Extended Features == | == Extended Features == | ||
ContactsLaw adds the following extended features: | ContactsLaw adds the following extended features: | ||
* | {| class="wikitable" | ||
|+ | |||
!Markdown | |||
!Formatting | |||
!Remarks | |||
|- | |||
|<code>__Underline__</code> | |||
|<u>Underline</u> | |||
|Not normally used in Markdown because it is easily confused with a hyperlink. | |||
|- | |||
|<code>~~Strikethrough~~</code> | |||
|<s>Strikethrough</s> | |||
| | |||
|- | |||
|<code>==Highlight==</code> | |||
|<span style="background-color:yellow;">Highlight</span> | |||
|Uses the default highlight colour. | |||
|- | |||
|<code>:smile:</code> | |||
|😄 | |||
|A range of emoji are supported. | |||
|- | |||
|<code>~[Red Text](red)</code> | |||
|<span style="color:red;">Red Text</span> | |||
|Colours can be referenced by name (see [[wikipedia:Web_colors#Extended_colors|X11 color names]]) or by their hexadecimal RGB representation, e.g. <code>~[Red](color:#ff0000)</code>. It is expected that explicit colours would be used sparingly in practice. | |||
|- | |||
|<code>~[Red Text](c:red)</code> | |||
|<span style="color:red;">Red Text</span> | |||
|The "c:" prefix denotes the text colour. | |||
|- | |||
|<code>~[Green Highlight](h:lime)</code> | |||
|<span style="background-color:lime;">Green Highlight</span> | |||
|The "h:" prefix denotes the highlight colour. | |||
|- | |||
|<code>~[Multi](c:red,h:lime)</code> | |||
|<span style="color:red;background-color:lime;">Multi</span> | |||
|} | |||
=== Tables === | |||
ContactsLaw also leverages established conventions for defining tables: | |||
{| class="wikitable" | |||
|+ | |||
!Markdown | |||
!Formatting | |||
!Remarks | |||
|- | |||
|<code><nowiki>|---|---|</nowiki></code> | |||
<code>|Column1|Column2|</code> | |||
| | |||
{| class="wikitable" | |||
|+ | |||
|Column1 | |||
|Column2 | |||
|} | |||
|Without header row. | |||
|- | |||
|<code><nowiki>|Heading1|Heading2|</nowiki></code> | |||
<code>|---|---|</code> | |||
<code>|Column1|Column2|</code> | |||
| | |||
{| class="wikitable" | |||
|+ | |||
!Heading1 | |||
!Heading2 | |||
|- | |||
|Column1 | |||
|Column2 | |||
|} | |||
| | |||
|- | |||
|<code><nowiki>|---|---|</nowiki></code> | |||
<code>|Column1|**Column2**|</code> | |||
| | |||
{| class="wikitable" | |||
|+ | |||
|Column1 | |||
|'''Column2''' | |||
|} | |||
|Text in cells can be combined with other formatting, e.g. bold. | |||
|- | |||
|<code><nowiki>|---|---|</nowiki></code> | |||
<code>|Column1 \\ Line2|Column2|</code> | |||
| | |||
{| class="wikitable" | |||
|+ | |||
|Column1 | |||
Line2 | |||
|Column2 | |||
|} | |||
|Line breaks inside cells use this special syntax. | |||
|} | |||
At minimum, a table must include its column definitions and at least one row. Unlike other flavours of Markdown, we permit tables without a heading row. | |||
Within a table cell, all types of formatting except those which create block-level elements (lists, etc) can be used. | |||
In some cases, it may not be clear whether a table should be shown with borders. Replacing hyphens (<code>-</code>) in the column definition with equals signs (<code>=</code>) indicates that borders are required. | |||
=== Images === | |||
ContactsLaw extends the established conventions for embedding images by adding support for explicit sizing and data URIs: | |||
{| class="wikitable" | |||
|+ | |||
!Markdown | |||
!Formatting | |||
!Remarks | |||
|- | |||
|<code>!(<nowiki>https://url/to/img</nowiki>)</code> | |||
|[[File:Image Placeholder.png|frameless|100x100px]] | |||
| | |||
|- | |||
|<code></code> | |||
|[[File:Image Placeholder.png|thumb|100x100px|Image Title]] | |||
|Depending on the destination, the title may appear as a tooltip. | |||
|- | |||
|<code>!(<nowiki>https://url/to/img</nowiki> 30x30mm)</code> | |||
|[[File:Image Placeholder (Stretched).png|frameless|100x100px]] | |||
|Both width and height specified (note: this may stretch the image). Units can be <code>mm</code>, <code>cm</code>, <code>pt</code> or <code>px</code>. | |||
|- | |||
|<code>!(<nowiki>https://url/to/img</nowiki> w30mm)</code> | |||
|[[File:Image Placeholder.png|frameless|100x100px]] | |||
|Use prefix "w" for width, or "h" for height. | |||
|- | |||
|<code>!(data:image/png;base64,VGhl</code> ... <code>ZveA==)</code> | |||
|[[File:Image Placeholder.png|frameless|100x100px]] | |||
|Note: Data has been truncated for brevity. | |||
|} | |||
Any combination of the above features is considered valid. At minimum, an image must have a source URL. | |||
Depending on the destination format, images may either be directly embedded or linked to an external resource. If the latter does not have a public URL, the image’s origin should match the document's. | |||
ContactsLaw will attempt to degrade gracefully if images cannot be displayed, e.g. by showing placeholders or alternative text. Images will be omitted entirely if unsupported by the destination format. | |||
=== Native Features === | |||
{{Hatnote| Main page: [[Document:Native Feature|Native Feature]]}} | |||
Although Markdown is intended to be destination-agnostic, there are occasions where features native to a particular format need to be included in the document for quality reasons. For example, while it may be sufficient to use whitespace to denote an indent in some formats, it is more desirable to use a tab space in Microsoft Word. | |||
Where present, these native features should always be accompanied by a fallback value. | |||
{| class="wikitable" | |||
|+ | |||
!Markdown | |||
!Formatting | |||
!Remarks | |||
|- | |||
|<code>!</code> | |||
| | |||
|Tab space in Microsoft Word, otherwise 3 consecutive spaces. | |||
|- | |||
|<code>Page !(.xlsx Formula ROW\(\))</code> | |||
|Page 1 | |||
|Page number in Microsoft Word, row number in Microsoft Excel, otherwise "1". | |||
|} | |||
== External Links == | == External Links == |
Latest revision as of 12:59, 19 November 2024
Markdown is a lightweight markup language for creating formatted text.
It is used in ContactsLaw for notes (associated with contacts, matters, etc) as well as in document templates.
One of the principal reasons for using Markdown (as opposed to other representations, such as Rich Text Format or HTML) is that it separates markup (paragraphs, lists, headings, etc) from style (colours, fonts, etc). This means that the same content can be displayed in different ways without affecting its semantics. This is particularly useful in document production as the author of the template does not need to be aware of any business-specific branding or design and, indeed, these can be altered freely without affecting content specifications.
The Desktop App provides a WYSIWYG editor, such that users do not need to learn the Markdown syntax. The Web App, however, requires Markdown to be entered directly, displaying a separate preview of the formatting.
Standard Features
ContactsLaw supports the following standard Markdown features:
Markdown | Formatting | Remarks |
---|---|---|
**Bold**
|
Bold | |
*Italic* or _Italic_
|
Italic | |
***Bold and Italic***
|
Bold and Italic | |
# Heading 1
|
Heading 1 |
|
## Heading 2
|
Heading 2 |
|
### Heading 3
|
Heading 3 |
|
#### Heading 4
|
Heading 4 |
Depending on the destination, up to 6 heading styles may be available. |
1. Ordered List
|
|
List items are automatically numbered, so you need only place a '1' beside each. |
- Unordered List
|
|
|
[Hyperlink](https://google.com)
|
Hyperlink | |
<https://google.com>
|
https://google.com | |
<name@email.com>
|
name@email.com | Automatically creates a "mailto:" link. |
`Code Span`
|
Code Span
|
Insignificant whitespace is preserved (this is not usually the case). |
---
|
Horizontal line/separator. |
Extended Features
ContactsLaw adds the following extended features:
Markdown | Formatting | Remarks |
---|---|---|
__Underline__
|
Underline | Not normally used in Markdown because it is easily confused with a hyperlink. |
~~Strikethrough~~
|
||
==Highlight==
|
Highlight | Uses the default highlight colour. |
:smile:
|
😄 | A range of emoji are supported. |
~[Red Text](red)
|
Red Text | Colours can be referenced by name (see X11 color names) or by their hexadecimal RGB representation, e.g. ~[Red](color:#ff0000) . It is expected that explicit colours would be used sparingly in practice.
|
~[Red Text](c:red)
|
Red Text | The "c:" prefix denotes the text colour. |
~[Green Highlight](h:lime)
|
Green Highlight | The "h:" prefix denotes the highlight colour. |
~[Multi](c:red,h:lime)
|
Multi |
Tables
ContactsLaw also leverages established conventions for defining tables:
Markdown | Formatting | Remarks | ||||
---|---|---|---|---|---|---|
|---|---|
|
|
Without header row. | ||||
|Heading1|Heading2|
|
|
|||||
|---|---|
|
|
Text in cells can be combined with other formatting, e.g. bold. | ||||
|---|---|
|
|
Line breaks inside cells use this special syntax. |
At minimum, a table must include its column definitions and at least one row. Unlike other flavours of Markdown, we permit tables without a heading row.
Within a table cell, all types of formatting except those which create block-level elements (lists, etc) can be used.
In some cases, it may not be clear whether a table should be shown with borders. Replacing hyphens (-
) in the column definition with equals signs (=
) indicates that borders are required.
Images
ContactsLaw extends the established conventions for embedding images by adding support for explicit sizing and data URIs:
Any combination of the above features is considered valid. At minimum, an image must have a source URL.
Depending on the destination format, images may either be directly embedded or linked to an external resource. If the latter does not have a public URL, the image’s origin should match the document's.
ContactsLaw will attempt to degrade gracefully if images cannot be displayed, e.g. by showing placeholders or alternative text. Images will be omitted entirely if unsupported by the destination format.
Native Features
Although Markdown is intended to be destination-agnostic, there are occasions where features native to a particular format need to be included in the document for quality reasons. For example, while it may be sufficient to use whitespace to denote an indent in some formats, it is more desirable to use a tab space in Microsoft Word.
Where present, these native features should always be accompanied by a fallback value.
Markdown | Formatting | Remarks |
---|---|---|
!
|
Tab space in Microsoft Word, otherwise 3 consecutive spaces. | |
Page !(.xlsx Formula ROW\(\))
|
Page 1 | Page number in Microsoft Word, row number in Microsoft Excel, otherwise "1". |
External Links
Markdown (Wikipedia)