Skip to main content
Testing. You are viewing the public testing version of GCN. For the production version, go to https://gcn.nasa.gov.
Introducing Einstein Probe, Astro Flavored Markdown, and Notices Schema v4.0.0. See news and announcements

Astro Flavored Markdown

Markdown is a lightweight markup language that is used to format text with HTML while still maintaining plaintext readability. It is commonly used in web development and has been implemented by many platforms, including GitHub and Slack. More information on Markdown can be found in the documentation written by the creators of Markdown, John Gruber and Aaron Swartz, at daringfireball.net.

GCN supports the use of Markdown to format text and tables when writing Circulars. One can access a shortcut bar for quickly formatting text with Markdown by selecting the Markdown tab in the body section of the Circular submission web interface; the shortcut bar is then shown just above the text input area. This documentation describes the various formatting tools in the shortcut bar as well as the syntax that can be manually written to format text in Markdown.

Basic Text Formatting

Markdown supports a number of basic text formatting options. Text is made bold or italic by enclosing it with ** and * symbols, respectively. Attaching a link to specific text is accomplished by using the format [Link](URL), and URLs and emails can be easily linked to without hyperlink text by enclosing them in angle brackets.

ExampleOutput
This is **Bold**This is Bold
This is *Italic*This is Italic
**This is *Italic* in Bold**This is Italic in Bold
This is ***Bold and Italic***This is Bold and Italic

This is a [Link](https://gcn.nasa.gov)

This is a Link

A Link to <https://gcn.nasa.gov>

A Link to https://gcn.nasa.gov

Headers

There are six levels of headers in Markdown. The number of # symbols at the beginning of a line determines the level of the header, with the first level being the largest and the sixth level being the smallest

ExampleOutput
# Header 1

Header 1

## Header 2

Header 2

### Header 3

Header 3

#### Header 4

Header 4

##### Header 5
Header 5
###### Header 6
Header 6

There is an alternate method for rendering text with the first and second header levels by following the header text with a line of = or - symbols, respectively.

ExampleOutput
Header 1
========

Header 1

Header 2
--------

Header 2

Lists

Markdown supports both ordered and unordered lists. To create an unordered list, start a line with a *, -, or + symbol followed by a space. To create an ordered list, start a line with a number followed by a period and a space. Each item in a list is written on its own line.

ExampleOutput
- Item 1
* Item 2
+ Item 3
  • Item 1
  • Item 2
  • Item 3
1. Item 1
2. Item 2
3. Item 3
  1. Item 1
  2. Item 2
  3. Item 3

Ordered and unordered nested lists are created by indenting the nested list items by four spaces.

ExampleOutput
- Item 1
- Item 2
  - Item 2.1
  - Item 2.2
- Item 3
  • Item 1
  • Item 2

    • Item 2.1
    • Item 2.2
  • Item 3
1. Item 1
2. Item 2
    1. Item 2.1
    2. Item 2.2
3. Item 3
  1. Item 1
  2. Item 2

    1. Item 2.1
    2. Item 2.2
  3. Item 3

Quotes and Code

Markdown supports a format for quoting sources and for displaying code. To indicate text is quoted from elsewhere, add the > symbol before the quote. To format code in monospace text, enclose the code in backticks (`) for inline code. To render a block of code, include three backticks (```) on the lines before and after the code block.

ExampleOutput
This is
>a quote

This is

a quote

This is `inline` code

This is inline code

```
Code Block line 1
Code Block line 2
```

Code block line 1
Code block line 2

Tables

To format a table, use the | symbol to separate columns and - symbols to separate the header from the body. The first row of a table is rendered as the header, and the second row is the separator. The rest of the rows are the body of the table.

ExampleOutput
| Header 1 | Header 2 |
| -------- | -------- |
| Row 1, Col 1 | Row 1, Col 2 |
| Row 2, Col 1 | Row 2, Col 2 |
Header 1Header 2
Row 1, Col 1Row 1, Col 2
Row 2, Col 1Row 2, Col 2

GCN Cross-References

GCN also supports a cross-reference feature that allows for circulars to have links automatically generated for a number of commonly referenced sources, like DOIs, arXiv codes, and other circulars, when referenced in the body of a circular.

GCN Circulars cross-reference syntax

ServiceExampleOutput
GCN CircularsGCN 34653, 34660, and 34677

GCN 34653

Not found
 
 
, 34660, and 34677

DOIdoi:10.1103/PhysRevLett.116.061102
arXivarXiv:1602.03837

arXiv:1602.03837

Not found
 
 

TNSAT2017gfo

AT2017gfo

Not found
 
 

Web addresshttps://www.swift.psu.edu

GCN cross-referencing is not impacted by Markdown formatting. Using Markdown for directly linking to web addresses is optional, but it can still be used for creating a hyperlink with custom text, as is shown in the basic text formatting section. Markdown hyperlinks to the aforementioned services supported by the GCN cross-reference feature are therefore also unnecessary.

Looking for U.S. government information and services? Visit USA.gov