Headings

A first title. Note that H1 is only ever used for the page title.

The quick brown fox jumps over the lazy dog

This is a paragraph under heading one. In this paragraph, the quick brown fox jumps over the lazy dog.

The quick brown fox jumps over the lazy dog

This is a paragraph under heading two. In this paragraph, the quick brown fox jumps over the lazy dog.

The quick brown fox jumps over the lazy dog

This is a paragraph under heading three. In this paragraph, the quick brown fox jumps over the lazy dog.

The quick brown fox jumps over the lazy dog

This is a paragraph under heading four. In this paragraph, the quick brown fox jumps over the lazy dog.

The quick brown fox jumps over the lazy dog

This is a paragraph under heading five. In this paragraph, the quick brown fox jumps over the lazy dog.

The quick brown fox jumps over the lazy dog

This is a paragraph under heading six. In this paragraph, the quick brown fox jumps over the lazy dog.

Text

Paragraphs

Incididunt ex adipisicing ea ullamco consectetur in voluptate proident fugiat tempor deserunt reprehenderit ullamco id dolore laborum. Do laboris laboris minim incididunt qui consectetur exercitation adipisicing dolore et magna consequat magna anim sunt. Officia fugiat Lorem sunt pariatur incididunt Lorem reprehenderit proident irure. Dolore ipsum aliqua mollit ad officia fugiat sit eu aliquip cupidatat ipsum duis laborum laborum fugiat esse. Voluptate anim ex dolore deserunt ea ex eiusmod irure. Occaecat excepteur aliqua exercitation aliquip dolor esse eu eu.

Text can contain links like this one. Enim aliquip magna id ipsum aliquip consectetur ad nulla quis. Incididunt pariatur dolor consectetur cillum enim velit cupidatat laborum quis ex.

Officia irure in non voluptate adipisicing sit amet tempor duis dolore deserunt enim ut. Reprehenderit incididunt in ad anim et deserunt deserunt Lorem laborum quis. Enim aute anim labore proident laboris voluptate elit excepteur in. Ex labore nulla velit officia ullamco Lorem Lorem id do. Dolore ullamco ipsum magna dolor pariatur voluptate ipsum id occaecat ipsum. Dolore tempor quis duis commodo quis quis enim.

Blockquotes

This is a quote:

Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut.

Emphasis

Text can be bold, in italics, or you can use strikethrough.

Lists

Ordered List

  1. One
  2. Two
  3. Three
    • Three A
    • Three B
    • Three C
  4. Four

Unordered List

  • Train
  • Bus
    • Red bus
    • Blue bus
  • Boat
  • A train is a form of rail transport consisting of a series of connected vehicles that generally run along a railroad ( or railway) track to transport passengers or cargo (also known as “freight” or “goods”). The word train comes from the Old French trahiner, derived from the Latin trahere meaning ’to pull, to draw'

Horizontal rule

A horizontal rule is shown between this paragraph and the next one.


A horizontal rule is shown between the previous paragraph and this one.

Table

Some text before a table

Table Heading 1Table Heading 2Center alignRight alignTable Heading 5
Item 1Item 2Item 3Item 4Item 5
Item 1Item 2Item 3Item 4Item 5
Item 1Item 2Item 3Item 4Item 5
Item 1Item 2Item 3Item 4Item 5
Item 1Item 2Item 3Item 4Item 5

Some text after a table

Code

Inline code

We can show code in text using single backticks. You can even show HTML tags <strong>in culpa qui officia</strong> this way.

Highlighted

It is possible to show a code snippet with syntax highlighting

 1package main
 2
 3import (
 4	"fmt"
 5	"net/http"
 6)
 7
 8func handler(w http.ResponseWriter, r *http.Request) {
 9	fmt.Fprintf(w, "Hi there, I love %s!", r.URL.Path[1:])
10}
11
12func main() {
13	http.HandleFunc("/", handler)
14	http.ListenAndServe(":8080", nil)
15}

Some text after the code so you can see the margins.

Tabs

  1{
  2  "Trip": [
  3    {
  4      "ServiceDays": [
  5        {
  6          "planningPeriodBegin": "2020-05-29",
  7          "planningPeriodEnd": "2020-08-16",
  8          "sDaysR": "not every day",
  9          "sDaysI": "2. until 18. Jun 2020 Mo - Fr",
 10          "sDaysB": "9F3E7800000000000000"
 11        }
 12      ],
 13      "LegList": {
 14        "Leg": [
 15          {
 16            "Origin": {
 17              "name": "Stockholm Centralstation",
 18              "type": "ST",
 19              "id": "740000001",
 20              "extId": "740000001",
 21              "lon": 18.058151,
 22              "lat": 59.330136,
 23              "routeIdx": 0,
 24              "time": "11:41:00",
 25              "date": "2020-06-02"
 26            },
 27            "Destination": {
 28              "name": "Norrköping Centralstation",
 29              "type": "ST",
 30              "id": "740000007",
 31              "extId": "740000007",
 32              "lon": 16.183343,
 33              "lat": 58.596625,
 34              "routeIdx": 6,
 35              "time": "13:26:00",
 36              "date": "2020-06-02"
 37            },
 38            "Notes": {
 39              "Note": [
 40                {
 41                  "value": "Endast 2 klass",
 42                  "key": "AA",
 43                  "type": "A",
 44                  "priority": 100,
 45                  "routeIdxFrom": 0,
 46                  "routeIdxTo": 6
 47                },
 48                {
 49                  "value": "Ej reservering",
 50                  "key": "AE",
 51                  "type": "A",
 52                  "priority": 100,
 53                  "routeIdxFrom": 0,
 54                  "routeIdxTo": 2
 55                },
 56                {
 57                  "value": "no WiFi",
 58                  "key": "SX",
 59                  "type": "A",
 60                  "priority": 100,
 61                  "routeIdxFrom": 0,
 62                  "routeIdxTo": 6
 63                },
 64                {
 65                  "value": "no A/C",
 66                  "key": "SY",
 67                  "type": "A",
 68                  "priority": 100,
 69                  "routeIdxFrom": 0,
 70                  "routeIdxTo": 6
 71                }
 72              ]
 73            },
 74            "Product": {
 75              "name": "Regional Tåg 231",
 76              "num": "231",
 77              "catCode": "2",
 78              "catOutS": "JRE",
 79              "catOutL": "Regional Tåg",
 80              "operatorCode": "74",
 81              "operator": "SJ",
 82              "operatorUrl": "http://www.sj.se"
 83            },
 84            "Stops": {
 85              "Stop": [
 86                {
 87                  "name": "Stockholm Centralstation",
 88                  "id": "740000001",
 89                  "extId": "740000001",
 90                  "routeIdx": 0,
 91                  "lon": 18.058151,
 92                  "lat": 59.330136,
 93                  "depTime": "11:41:00",
 94                  "depDate": "2020-06-02"
 95                },
 96                {
 97                  "name": "Kolmården station (Norrköping kn)",
 98                  "id": "740001545",
 99                  "extId": "740001545",
100                  "routeIdx": 5,
101                  "lon": 16.362597,
102                  "lat": 58.675424,
103                  "depTime": "13:09:00",
104                  "depDate": "2020-06-02",
105                  "arrTime": "13:09:00",
106                  "arrDate": "2020-06-02"
107                },
108                {
109                  "name": "Norrköping Centralstation",
110                  "id": "740000007",
111                  "extId": "740000007",
112                  "routeIdx": 6,
113                  "lon": 16.183343,
114                  "lat": 58.596625,
115                  "arrTime": "13:26:00",
116                  "arrDate": "2020-06-02"
117                }
118              ]
119            },
120            "idx": "0",
121            "name": "Regional Tåg 231",
122            "transportNumber": "231",
123            "transportCategory": "JRE",
124            "type": "JNY",
125            "reachable": true,
126            "direction": "Norrköping Centralstation"
127          },
128          {
129            "Origin": {
130              "name": "Norrköping Centralstation",
131              "type": "ST",
132              "id": "740000007",
133              "extId": "740000007",
134              "lon": 16.183343,
135              "lat": 58.596625,
136              "routeIdx": 0,
137              "time": "13:48:00",
138              "date": "2020-06-02"
139            },
140            "Destination": {
141              "name": "Mjölby station",
142              "type": "ST",
143              "id": "740000180",
144              "extId": "740000180",
145              "lon": 15.131992,
146              "lat": 58.322984,
147              "routeIdx": 6,
148              "time": "14:35:00",
149              "date": "2020-06-02"
150            },
151            "Notes": {
152              "Note": [
153                {
154                  "value": "Endast 2 klass",
155                  "key": "AA",
156                  "type": "A",
157                  "priority": 100,
158                  "routeIdxFrom": 0,
159                  "routeIdxTo": 6
160                },
161                {
162                  "value": "Ej reservering",
163                  "key": "AE",
164                  "type": "A",
165                  "priority": 100,
166                  "routeIdxFrom": 0,
167                  "routeIdxTo": 6
168                }
169              ]
170            },
171            "Product": {
172              "name": "Länstrafik - Tåg 8739",
173              "num": "8739",
174              "catCode": "4",
175              "catOutS": "JLT",
176              "catOutL": "Länstrafik - Tåg",
177              "operatorCode": "253",
178              "operator": "ÖstgötaTrafiken",
179              "operatorUrl": "http://www.ostgotatrafiken.se/"
180            },
181            "Stops": {
182              "Stop": [
183                {
184                  "name": "Norrköping Centralstation",
185                  "id": "740000007",
186                  "extId": "740000007",
187                  "routeIdx": 0,
188                  "lon": 16.183343,
189                  "lat": 58.596625,
190                  "depTime": "13:48:00",
191                  "depDate": "2020-06-02"
192                },
193                {
194                  "name": "Kimstad station (Norrköping kn)",
195                  "id": "740068883",
196                  "extId": "740068883",
197                  "routeIdx": 1,
198                  "lon": 15.971764,
199                  "lat": 58.546106,
200                  "depTime": "13:59:00",
201                  "depDate": "2020-06-02",
202                  "arrTime": "13:59:00",
203                  "arrDate": "2020-06-02"
204                },
205                {
206                  "name": "Mjölby station",
207                  "id": "740000180",
208                  "extId": "740000180",
209                  "routeIdx": 6,
210                  "lon": 15.131992,
211                  "lat": 58.322984,
212                  "arrTime": "14:35:00",
213                  "arrDate": "2020-06-02"
214                }
215              ]
216            },
217            "idx": "1",
218            "name": "Länstrafik - Tåg 8739",
219            "transportNumber": "8739",
220            "transportCategory": "JLT",
221            "type": "JNY",
222            "reachable": true,
223            "direction": "Motala station"
224          }
225        ],
226        "scrB": "1|OB|MTµ11µ9501µ9341µ9763µ9851µ0µ0µ66133µ9319µ1µ-2147483616µ0µ1µ2|PDHµ60b11222cb3bfeafacd1e38613ce2846|RDµ2062020|RTµ111941",
227        "scrF": "1|OF|MTµ11µ9741µ9741µ10003µ10003µ0µ0µ2613µ9631µ8µ-2147482606µ0µ1µ2|PDHµ60b11222cb3bfeafacd1e38613ce2846|RDµ2062020|RTµ111941"
228      }
229    }
230  ]
  1<?xml version="1.0" encoding="UTF-8"?>
  2<TripList
  3        scrB="1|OB|MTµ11µ9501µ9341µ9763µ9851µ0µ0µ66133µ9322µ1µ-2147483616µ0µ1µ2|PDHµ60b11222cb3bfeafacd1e38613ce2846|RDµ2062020|RTµ112220"
  4        scrF="1|OF|MTµ11µ9741µ9741µ10003µ10003µ0µ0µ2613µ9631µ8µ-2147482606µ0µ1µ2|PDHµ60b11222cb3bfeafacd1e38613ce2846|RDµ2062020|RTµ112220"
  5        xmlns="hafas_rest_v1">
  6    <Trip idx="0"
  7          ctxRecon="T$A=1@O=Stockholm Centralstation@L=740000001@a=128@$A=1@O=Norrköping Centralstation@L=740000007@a=128@$202006021141$202006021326$JRE  231$$1$§T$A=1@O=Norrköping Centralstation@L=740000007@a=128@$A=1@O=Mjölby station@L=740000180@a=128@$202006021348$202006021435$JLT 8739$$1$§T$A=1@O=Mjölby station@L=740000180@a=128@$A=1@O=Tranås station@L=740000041@a=128@$202006021447$202006021508$JLT18839$$1$§T$A=1@O=Tranås station@L=740000041@a=128@$A=1@O=Nässjö Centralstation@L=740000140@a=128@$202006021614$202006021641$JLT27621$$1$§T$A=1@O=Nässjö Centralstation@L=740000140@a=128@$A=1@O=Alvesta station@L=740000004@a=128@$202006021701$202006021753$JLT17619$$1$§T$A=1@O=Alvesta station@L=740000004@a=128@$A=1@O=Malmö Centralstation@L=740000003@a=128@$202006021833$202006022011$JRE 1101$$1$"
  8          tripId="C-0" duration="PT8H30M">
  9        <ServiceDays sDaysR="not every day" sDaysI="2. until 18. Jun 2020 Mo - Fr" sDaysB="9F3E7800000000000000"
 10                     planningPeriodBegin="2020-05-29" planningPeriodEnd="2020-08-16"/>
 11        <LegList>
 12            <Leg type="JNY" idx="0" name="Regional Tåg 231" transportNumber="231" transportCategory="JRE"
 13                 reachable="true" direction="Norrköping Centralstation">
 14                <Origin extId="740000001" id="740000001" name="Stockholm Centralstation" type="ST" routeIdx="0"
 15                        lon="18.058151" lat="59.330136" date="2020-06-02" time="11:41:00"/>
 16                <Destination extId="740000007" id="740000007" name="Norrköping Centralstation" type="ST" routeIdx="6"
 17                             lon="16.183343" lat="58.596625" date="2020-06-02" time="13:26:00"/>
 18                <Notes>
 19                    <Note routeIdxFrom="0" routeIdxTo="6" key="AA" priority="100" type="A">Endast 2 klass</Note>
 20                    <Note routeIdxFrom="0" routeIdxTo="2" key="AE" priority="100" type="A">Ej reservering</Note>
 21                    <Note routeIdxFrom="0" routeIdxTo="6" key="SX" priority="100" type="A">no WiFi</Note>
 22                    <Note routeIdxFrom="0" routeIdxTo="6" key="SY" priority="100" type="A">no A/C</Note>
 23                </Notes>
 24                <Product catCode="2" catOutL="Regional Tåg" catOutS="JRE" name="Regional Tåg 231" num="231"
 25                         operator="SJ" operatorCode="74" operatorUrl="http://www.sj.se"/>
 26                <Stops>
 27                    <Stop depDate="2020-06-02" depTime="11:41:00" routeIdx="0" name="Stockholm Centralstation"
 28                          id="740000001" extId="740000001" lon="18.058151" lat="59.330136"/>
 29                    <Stop depDate="2020-06-02" depTime="11:52:00" arrDate="2020-06-02" arrTime="11:52:00" routeIdx="1"
 30                          name="Flemingsberg station (Huddinge kn)" id="740000031" extId="740000031" lon="17.945678"
 31                          lat="59.217959"/>
 32                    <Stop depDate="2020-06-02" depTime="12:03:00" arrDate="2020-06-02" arrTime="12:03:00" routeIdx="2"
 33                          name="Södertälje Syd station" id="740000055" extId="740000055" lon="17.645367"
 34                          lat="59.162415"/>
 35                    <Stop depDate="2020-06-02" depTime="12:19:00" arrDate="2020-06-02" arrTime="12:19:00" routeIdx="3"
 36                          name="Vagnhärad station (Trosa kn)" id="740000605" extId="740000605" lon="17.496694"
 37                          lat="58.945739"/>
 38                    <Stop depDate="2020-06-02" depTime="12:46:00" arrDate="2020-06-02" arrTime="12:46:00" routeIdx="4"
 39                          name="Nyköping Centralstation" id="740000050" extId="740000050" lon="16.994781"
 40                          lat="58.755689"/>
 41                    <Stop depDate="2020-06-02" depTime="13:09:00" arrDate="2020-06-02" arrTime="13:09:00" routeIdx="5"
 42                          name="Kolmården station (Norrköping kn)" id="740001545" extId="740001545" lon="16.362597"
 43                          lat="58.675424"/>
 44                    <Stop arrDate="2020-06-02" arrTime="13:26:00" routeIdx="6" name="Norrköping Centralstation"
 45                          id="740000007" extId="740000007" lon="16.183343" lat="58.596625"/>
 46                </Stops>
 47            </Leg>
 48            <Leg type="JNY" idx="1" name="Länstrafik - Tåg 8739" transportNumber="8739" transportCategory="JLT"
 49                 reachable="true" direction="Motala station">
 50                <Origin extId="740000007" id="740000007" name="Norrköping Centralstation" type="ST" routeIdx="0"
 51                        lon="16.183343" lat="58.596625" date="2020-06-02" time="13:48:00"/>
 52                <Destination extId="740000180" id="740000180" name="Mjölby station" type="ST" routeIdx="6"
 53                             lon="15.131992" lat="58.322984" date="2020-06-02" time="14:35:00"/>
 54                <Notes>
 55                    <Note routeIdxFrom="0" routeIdxTo="6" key="AA" priority="100" type="A">Endast 2 klass</Note>
 56                    <Note routeIdxFrom="0" routeIdxTo="6" key="AE" priority="100" type="A">Ej reservering</Note>
 57                </Notes>
 58                <Product catCode="4" catOutL="Länstrafik - Tåg" catOutS="JLT" name="Länstrafik - Tåg 8739" num="8739"
 59                         operator="ÖstgötaTrafiken" operatorCode="253" operatorUrl="http://www.ostgotatrafiken.se/"/>
 60                <Stops>
 61                    <Stop depDate="2020-06-02" depTime="13:48:00" routeIdx="0" name="Norrköping Centralstation"
 62                          id="740000007" extId="740000007" lon="16.183343" lat="58.596625"/>
 63                    <Stop depDate="2020-06-02" depTime="13:59:00" arrDate="2020-06-02" arrTime="13:59:00" routeIdx="1"
 64                          name="Kimstad station (Norrköping kn)" id="740068883" extId="740068883" lon="15.971764"
 65                          lat="58.546106"/>
 66                    <Stop depDate="2020-06-02" depTime="14:08:00" arrDate="2020-06-02" arrTime="14:08:00" routeIdx="2"
 67                          name="Linghem station (Linköping kn)" id="740000849" extId="740000849" lon="15.787188"
 68                          lat="58.436689"/>
 69                    <Stop depDate="2020-06-02" depTime="14:16:00" arrDate="2020-06-02" arrTime="14:15:00" routeIdx="3"
 70                          name="Linköping Centralstation" id="740000009" extId="740000009" lon="15.62496"
 71                          lat="58.416634"/>
 72                    <Stop depDate="2020-06-02" depTime="14:22:00" arrDate="2020-06-02" arrTime="14:22:00" routeIdx="4"
 73                          name="Vikingstad station (Linköping kn)" id="740000868" extId="740000868" lon="15.431971"
 74                          lat="58.383167"/>
 75                    <Stop depDate="2020-06-02" depTime="14:28:00" arrDate="2020-06-02" arrTime="14:28:00" routeIdx="5"
 76                          name="Mantorp station (Mjölby kn)" id="740000616" extId="740000616" lon="15.290732"
 77                          lat="58.348622"/>
 78                    <Stop arrDate="2020-06-02" arrTime="14:35:00" routeIdx="6" name="Mjölby station" id="740000180"
 79                          extId="740000180" lon="15.131992" lat="58.322984"/>
 80                </Stops>
 81            </Leg>
 82            <Leg type="JNY" idx="2" name="Länstrafik - Tåg 18839" transportNumber="18839" transportCategory="JLT"
 83                 reachable="true" direction="Tranås station">
 84                <Origin extId="740000180" id="740000180" name="Mjölby station" type="ST" routeIdx="0" lon="15.131992"
 85                        lat="58.322984" date="2020-06-02" time="14:47:00"/>
 86                <Destination extId="740000041" id="740000041" name="Tranås station" type="ST" routeIdx="2"
 87                             lon="14.975022" lat="58.037963" date="2020-06-02" time="15:08:00"/>
 88                <Notes>
 89                    <Note routeIdxFrom="0" routeIdxTo="2" key="AA" priority="100" type="A">Endast 2 klass</Note>
 90                    <Note routeIdxFrom="0" routeIdxTo="2" key="AE" priority="100" type="A">Ej reservering</Note>
 91                </Notes>
 92                <Product catCode="4" catOutL="Länstrafik - Tåg" catOutS="JLT" name="Länstrafik - Tåg 18839" num="18839"
 93                         operator="ÖstgötaTrafiken" operatorCode="253" operatorUrl="http://www.ostgotatrafiken.se/"/>
 94                <Stops>
 95                    <Stop depDate="2020-06-02" depTime="14:47:00" routeIdx="0" name="Mjölby station" id="740000180"
 96                          extId="740000180" lon="15.131992" lat="58.322984"/>
 97                    <Stop depDate="2020-06-02" depTime="14:56:00" arrDate="2020-06-02" arrTime="14:56:00" routeIdx="1"
 98                          name="Boxholm station" id="740000015" extId="740000015" lon="15.054145" lat="58.193657"/>
 99                    <Stop arrDate="2020-06-02" arrTime="15:08:00" routeIdx="2" name="Tranås station" id="740000041"
100                          extId="740000041" lon="14.975022" lat="58.037963"/>
101                </Stops>
102            </Leg>
103            <Leg type="JNY" idx="3" name="Länstrafik - Tåg 27621" transportNumber="27621" transportCategory="JLT"
104                 reachable="true" direction="Nässjö Centralstation">
105                <Origin extId="740000041" id="740000041" name="Tranås station" type="ST" routeIdx="0" lon="14.975022"
106                        lat="58.037963" date="2020-06-02" time="16:14:00"/>
107                <Destination extId="740000140" id="740000140" name="Nässjö Centralstation" type="ST" routeIdx="2"
108                             lon="14.693983" lat="57.652443" date="2020-06-02" time="16:41:00"/>
109                <Notes>
110                    <Note routeIdxFrom="0" routeIdxTo="2" key="AA" priority="100" type="A">Endast 2 klass</Note>
111                    <Note routeIdxFrom="0" routeIdxTo="2" key="AE" priority="100" type="A">Ej reservering</Note>
112                </Notes>
113                <Product catCode="4" catOutL="Länstrafik - Tåg" catOutS="JLT" name="Länstrafik - Tåg 27621" num="27621"
114                         operator="JLT" operatorCode="254" operatorUrl="http://www.jlt.se"/>
115                <Stops>
116                    <Stop depDate="2020-06-02" depTime="16:14:00" routeIdx="0" name="Tranås station" id="740000041"
117                          extId="740000041" lon="14.975022" lat="58.037963"/>
118                    <Stop depDate="2020-06-02" depTime="16:28:00" arrDate="2020-06-02" arrTime="16:28:00" routeIdx="1"
119                          name="Aneby station" id="740000379" extId="740000379" lon="14.810816" lat="57.836237"/>
120                    <Stop arrDate="2020-06-02" arrTime="16:41:00" routeIdx="2" name="Nässjö Centralstation"
121                          id="740000140" extId="740000140" lon="14.693983" lat="57.652443"/>
122                </Stops>
123            </Leg>
124            <Leg type="JNY" idx="4" name="Länstrafik - Tåg 17619" transportNumber="17619" transportCategory="JLT"
125                 reachable="true" direction="Växjö station">
126                <Origin extId="740000140" id="740000140" name="Nässjö Centralstation" type="ST" routeIdx="4"
127                        lon="14.693983" lat="57.652443" date="2020-06-02" time="17:01:00"/>
128                <Destination extId="740000004" id="740000004" name="Alvesta station" type="ST" routeIdx="10"
129                             lon="14.556322" lat="56.898778" date="2020-06-02" time="17:53:00"/>
130                <Notes>
131                    <Note routeIdxFrom="4" routeIdxTo="10" key="AA" priority="100" type="A">Endast 2 klass</Note>
132                    <Note routeIdxFrom="4" routeIdxTo="10" key="AE" priority="100" type="A">Ej reservering</Note>
133                </Notes>
134                <Product catCode="4" catOutL="Länstrafik - Tåg" catOutS="JLT" name="Länstrafik - Tåg 17619" num="17619"
135                         operator="JLT" operatorCode="254" operatorUrl="http://www.jlt.se"/>
136                <Stops>
137                    <Stop depDate="2020-06-02" depTime="17:01:00" routeIdx="4" name="Nässjö Centralstation"
138                          id="740000140" extId="740000140" lon="14.693983" lat="57.652443"/>
139                    <Stop depDate="2020-06-02" depTime="17:11:00" arrDate="2020-06-02" arrTime="17:11:00" routeIdx="5"
140                          name="Bodafors station (Nässjö kn)" id="740000963" extId="740000963" lon="14.693291"
141                          lat="57.504103"/>
142                    <Stop depDate="2020-06-02" depTime="17:18:00" arrDate="2020-06-02" arrTime="17:18:00" routeIdx="6"
143                          name="Sävsjö station" id="740000078" extId="740000078" lon="14.665308" lat="57.402849"/>
144                    <Stop depDate="2020-06-02" depTime="17:25:00" arrDate="2020-06-02" arrTime="17:25:00" routeIdx="7"
145                          name="Stockaryd station (Sävsjö kn)" id="740001318" extId="740001318" lon="14.591758"
146                          lat="57.313397"/>
147                    <Stop depDate="2020-06-02" depTime="17:34:00" arrDate="2020-06-02" arrTime="17:34:00" routeIdx="8"
148                          name="Lammhult station (Växjö kn)" id="740037092" extId="740037092" lon="14.585385"
149                          lat="57.171035"/>
150                    <Stop depDate="2020-06-02" depTime="17:45:00" arrDate="2020-06-02" arrTime="17:45:00" routeIdx="9"
151                          name="Moheda station (Alvesta kn)" id="740000122" extId="740000122" lon="14.576863"
152                          lat="57.003278"/>
153                    <Stop arrDate="2020-06-02" arrTime="17:53:00" routeIdx="10" name="Alvesta station" id="740000004"
154                          extId="740000004" lon="14.556322" lat="56.898778"/>
155                </Stops>
156            </Leg>
157            <Leg type="JNY" idx="5" name="Regional Tåg 1101" transportNumber="1101" transportCategory="JRE"
158                 reachable="true" direction="Malmö Centralstation">
159                <Origin extId="740000004" id="740000004" name="Alvesta station" type="ST" routeIdx="6" lon="14.556322"
160                        lat="56.898778" date="2020-06-02" time="18:33:00"/>
161                <Destination extId="740000003" id="740000003" name="Malmö Centralstation" type="ST" routeIdx="13"
162                             lon="13.00091" lat="55.609456" date="2020-06-02" time="20:11:00"/>
163                <Notes>
164                    <Note routeIdxFrom="12" routeIdxTo="13" key="AE" priority="100" type="A">Ej reservering</Note>
165                    <Note routeIdxFrom="6" routeIdxTo="13" key="AG" priority="100" type="A">Frivillig platsbokning
166                    </Note>
167                    <Note routeIdxFrom="6" routeIdxTo="13" key="AN" priority="100" type="A">Rullstolslyft</Note>
168                </Notes>
169                <Product catCode="2" catOutL="Regional Tåg" catOutS="JRE" name="Regional Tåg 1101" num="1101"
170                         operator="Öresundståg" operatorCode="300" operatorUrl="http://www.oresundstag.se/"/>
171                <Stops>
172                    <Stop depDate="2020-06-02" depTime="18:33:00" routeIdx="6" name="Alvesta station" id="740000004"
173                          extId="740000004" lon="14.556322" lat="56.898778"/>
174                    <Stop depDate="2020-06-02" depTime="18:52:00" arrDate="2020-06-02" arrTime="18:52:00" routeIdx="7"
175                          name="Älmhult station" id="740000045" extId="740000045" lon="14.136985" lat="56.551426"/>
176                    <Stop depDate="2020-06-02" depTime="19:02:00" arrDate="2020-06-02" arrTime="19:02:00" routeIdx="8"
177                          name="Osby station" id="740000295" extId="740000295" lon="13.994254" lat="56.379948"/>
178                    <Stop depDate="2020-06-02" depTime="19:22:00" arrDate="2020-06-02" arrTime="19:18:00" routeIdx="9"
179                          name="Hässleholm Centralstation" id="740000006" extId="740000006" lon="13.763141"
180                          lat="56.157762"/>
181                    <Stop depDate="2020-06-02" depTime="19:36:00" arrDate="2020-06-02" arrTime="19:35:00" routeIdx="10"
182                          name="Höör station" id="740000185" extId="740000185" lon="13.541395" lat="55.937023"/>
183                    <Stop depDate="2020-06-02" depTime="19:46:00" arrDate="2020-06-02" arrTime="19:45:00" routeIdx="11"
184                          name="Eslöv station" id="740000260" extId="740000260" lon="13.305491" lat="55.837719"/>
185                    <Stop depDate="2020-06-02" depTime="19:58:00" arrDate="2020-06-02" arrTime="19:56:00" routeIdx="12"
186                          name="Lund Centralstation" id="740000120" extId="740000120" lon="13.186897" lat="55.708094"/>
187                    <Stop arrDate="2020-06-02" arrTime="20:11:00" routeIdx="13" name="Malmö Centralstation"
188                          id="740000003" extId="740000003" lon="13.00091" lat="55.609456"/>
189                </Stops>
190            </Leg>
191        </LegList>
192    </Trip>
193    <Trip idx="1"
194          ctxRecon="T$A=1@O=Stockholm Centralstation@L=740000001@a=128@$A=1@O=Norrköping Centralstation@L=740000007@a=128@$202006021141$202006021326$JRE  231$$1$§T$A=1@O=Norrköping Centralstation@L=740000007@a=128@$A=1@O=Linköping Centralstation@L=740000009@a=128@$202006021348$202006021415$JLT 8739$$1$§T$A=1@O=Linköping Centralstation@L=740000009@a=128@$A=1@O=Kalmar Centralstation@L=740000020@a=128@$202006021426$202006021738$JBL 8561$$1$§T$A=1@O=Kalmar Centralstation@L=740000020@a=128@$A=1@O=Malmö Centralstation@L=740000003@a=128@$202006021800$202006022111$JRE 1107$$1$"
195          tripId="C-1" duration="PT9H30M">
196        <ServiceDays sDaysR="not every day" sDaysI="2. until 18. Jun 2020 Mo - Fr" sDaysB="9F3E7800000000000000"
197                     planningPeriodBegin="2020-05-29" planningPeriodEnd="2020-08-16"/>
198        <LegList>
199            <Leg type="JNY" idx="0" name="Regional Tåg 231" transportNumber="231" transportCategory="JRE"
200                 reachable="true" direction="Norrköping Centralstation">
201                <Origin extId="740000001" id="740000001" name="Stockholm Centralstation" type="ST" routeIdx="0"
202                        lon="18.058151" lat="59.330136" date="2020-06-02" time="11:41:00"/>
203                <Destination extId="740000007" id="740000007" name="Norrköping Centralstation" type="ST" routeIdx="6"
204                             lon="16.183343" lat="58.596625" date="2020-06-02" time="13:26:00"/>
205                <Notes>
206                    <Note routeIdxFrom="0" routeIdxTo="6" key="AA" priority="100" type="A">Endast 2 klass</Note>
207                    <Note routeIdxFrom="0" routeIdxTo="2" key="AE" priority="100" type="A">Ej reservering</Note>
208                    <Note routeIdxFrom="0" routeIdxTo="6" key="SX" priority="100" type="A">no WiFi</Note>
209                    <Note routeIdxFrom="0" routeIdxTo="6" key="SY" priority="100" type="A">no A/C</Note>
210                </Notes>
211                <Product catCode="2" catOutL="Regional Tåg" catOutS="JRE" name="Regional Tåg 231" num="231"
212                         operator="SJ" operatorCode="74" operatorUrl="http://www.sj.se"/>
213                <Stops>
214                    <Stop depDate="2020-06-02" depTime="11:41:00" routeIdx="0" name="Stockholm Centralstation"
215                          id="740000001" extId="740000001" lon="18.058151" lat="59.330136"/>
216                    <Stop depDate="2020-06-02" depTime="11:52:00" arrDate="2020-06-02" arrTime="11:52:00" routeIdx="1"
217                          name="Flemingsberg station (Huddinge kn)" id="740000031" extId="740000031" lon="17.945678"
218                          lat="59.217959"/>
219                    <Stop depDate="2020-06-02" depTime="12:03:00" arrDate="2020-06-02" arrTime="12:03:00" routeIdx="2"
220                          name="Södertälje Syd station" id="740000055" extId="740000055" lon="17.645367"
221                          lat="59.162415"/>
222                    <Stop depDate="2020-06-02" depTime="12:19:00" arrDate="2020-06-02" arrTime="12:19:00" routeIdx="3"
223                          name="Vagnhärad station (Trosa kn)" id="740000605" extId="740000605" lon="17.496694"
224                          lat="58.945739"/>
225                    <Stop depDate="2020-06-02" depTime="12:46:00" arrDate="2020-06-02" arrTime="12:46:00" routeIdx="4"
226                          name="Nyköping Centralstation" id="740000050" extId="740000050" lon="16.994781"
227                          lat="58.755689"/>
228                    <Stop depDate="2020-06-02" depTime="13:09:00" arrDate="2020-06-02" arrTime="13:09:00" routeIdx="5"
229                          name="Kolmården station (Norrköping kn)" id="740001545" extId="740001545" lon="16.362597"
230                          lat="58.675424"/>
231                    <Stop arrDate="2020-06-02" arrTime="13:26:00" routeIdx="6" name="Norrköping Centralstation"
232                          id="740000007" extId="740000007" lon="16.183343" lat="58.596625"/>
233                </Stops>
234            </Leg>
235            <Leg type="JNY" idx="1" name="Länstrafik - Tåg 8739" transportNumber="8739" transportCategory="JLT"
236                 reachable="true" direction="Motala station">
237                <Origin extId="740000007" id="740000007" name="Norrköping Centralstation" type="ST" routeIdx="0"
238                        lon="16.183343" lat="58.596625" date="2020-06-02" time="13:48:00"/>
239                <Destination extId="740000009" id="740000009" name="Linköping Centralstation" type="ST" routeIdx="3"
240                             lon="15.62496" lat="58.416634" date="2020-06-02" time="14:15:00"/>
241                <Notes>
242                    <Note routeIdxFrom="0" routeIdxTo="3" key="AA" priority="100" type="A">Endast 2 klass</Note>
243                    <Note routeIdxFrom="0" routeIdxTo="3" key="AE" priority="100" type="A">Ej reservering</Note>
244                </Notes>
245                <Product catCode="4" catOutL="Länstrafik - Tåg" catOutS="JLT" name="Länstrafik - Tåg 8739" num="8739"
246                         operator="ÖstgötaTrafiken" operatorCode="253" operatorUrl="http://www.ostgotatrafiken.se/"/>
247                <Stops>
248                    <Stop depDate="2020-06-02" depTime="13:48:00" routeIdx="0" name="Norrköping Centralstation"
249                          id="740000007" extId="740000007" lon="16.183343" lat="58.596625"/>
250                    <Stop depDate="2020-06-02" depTime="13:59:00" arrDate="2020-06-02" arrTime="13:59:00" routeIdx="1"
251                          name="Kimstad station (Norrköping kn)" id="740068883" extId="740068883" lon="15.971764"
252                          lat="58.546106"/>
253                    <Stop depDate="2020-06-02" depTime="14:08:00" arrDate="2020-06-02" arrTime="14:08:00" routeIdx="2"
254                          name="Linghem station (Linköping kn)" id="740000849" extId="740000849" lon="15.787188"
255                          lat="58.436689"/>
256                    <Stop arrDate="2020-06-02" arrTime="14:15:00" routeIdx="3" name="Linköping Centralstation"
257                          id="740000009" extId="740000009" lon="15.62496" lat="58.416634"/>
258                </Stops>
259            </Leg>
260            <Leg type="JNY" idx="2" name="Tåg 8561" transportNumber="8561" transportCategory="JBL" reachable="true"
261                 direction="Kalmar Centralstation">
262                <Origin extId="740000009" id="740000009" name="Linköping Centralstation" type="ST" routeIdx="0"
263                        lon="15.62496" lat="58.416634" date="2020-06-02" time="14:26:00"/>
264                <Destination extId="740000020" id="740000020" name="Kalmar Centralstation" type="ST" routeIdx="10"
265                             lon="16.360071" lat="56.661283" date="2020-06-02" time="17:38:00"/>
266                <Notes>
267                    <Note routeIdxFrom="0" routeIdxTo="10" key="AG" priority="100" type="A">Frivillig platsbokning
268                    </Note>
269                </Notes>
270                <Product catCode="2" catOutL="Tåg" catOutS="JBL" name="Tåg 8561" num="8561" operator="Kustpilen"
271                         operatorCode="653" operatorUrl="https://klt.se/"/>
272                <Stops>
273                    <Stop depDate="2020-06-02" depTime="14:26:00" routeIdx="0" name="Linköping Centralstation"
274                          id="740000009" extId="740000009" lon="15.62496" lat="58.416634"/>
275                    <Stop depDate="2020-06-02" depTime="14:30:00" routeIdx="1" name="Tannefors station (Linköping kn)"
276                          id="740001336" extId="740001336" lon="15.659236" lat="58.400471"/>
277                    <Stop depDate="2020-06-02" depTime="15:02:00" arrDate="2020-06-02" arrTime="15:01:00" routeIdx="2"
278                          name="Rimforsa station (Kinda kn)" id="740000365" extId="740000365" lon="15.6817"
279                          lat="58.13555"/>
280                    <Stop depDate="2020-06-02" depTime="15:19:00" arrDate="2020-06-02" arrTime="15:19:00" routeIdx="3"
281                          name="Kisa station (Kinda kn)" id="740000344" extId="740000344" lon="15.633805"
282                          lat="57.985386"/>
283                    <Stop depDate="2020-06-02" depTime="15:46:00" arrDate="2020-06-02" arrTime="15:46:00" routeIdx="4"
284                          name="Astrid Lindgrens Värld station (Vimmerby kn)" id="740001013" extId="740001013"
285                          lon="15.842535" lat="57.674997"/>
286                    <Stop depDate="2020-06-02" depTime="15:48:00" arrDate="2020-06-02" arrTime="15:48:00" routeIdx="5"
287                          name="Vimmerby station" id="740000351" extId="740000351" lon="15.858266" lat="57.663158"/>
288                    <Stop depDate="2020-06-02" depTime="16:04:00" arrDate="2020-06-02" arrTime="16:04:00" routeIdx="6"
289                          name="Hultsfred station" id="740000348" extId="740000348" lon="15.846742" lat="57.486754"/>
290                    <Stop depDate="2020-06-02" depTime="16:35:00" arrDate="2020-06-02" arrTime="16:30:00" routeIdx="7"
291                          name="Berga station (Högsby kn)" id="740000500" extId="740000500" lon="16.032711"
292                          lat="57.21634"/>
293                    <Stop depDate="2020-06-02" depTime="16:40:00" arrDate="2020-06-02" arrTime="16:40:00" routeIdx="8"
294                          name="Högsby station" id="740000923" extId="740000923" lon="16.027812" lat="57.165749"/>
295                    <Stop depDate="2020-06-02" depTime="17:05:00" arrDate="2020-06-02" arrTime="17:02:00" routeIdx="9"
296                          name="Blomstermåla station (Mönsterås kn)" id="740001000" extId="740001000" lon="16.332627"
297                          lat="56.980598"/>
298                    <Stop arrDate="2020-06-02" arrTime="17:38:00" routeIdx="10" name="Kalmar Centralstation"
299                          id="740000020" extId="740000020" lon="16.360071" lat="56.661283"/>
300                </Stops>
301            </Leg>
302            <Leg type="JNY" idx="3" name="Regional Tåg 1107" transportNumber="1107" transportCategory="JRE"
303                 reachable="true" direction="Malmö Centralstation">
304                <Origin extId="740000020" id="740000020" name="Kalmar Centralstation" type="ST" routeIdx="0"
305                        lon="16.360071" lat="56.661283" date="2020-06-02" time="18:00:00"/>
306                <Destination extId="740000003" id="740000003" name="Malmö Centralstation" type="ST" routeIdx="13"
307                             lon="13.00091" lat="55.609456" date="2020-06-02" time="21:11:00"/>
308                <Notes>
309                    <Note routeIdxFrom="5" routeIdxTo="6" key="AE" priority="100" type="A">Ej reservering</Note>
310                    <Note routeIdxFrom="12" routeIdxTo="13" key="AE" priority="100" type="A">Ej reservering</Note>
311                    <Note routeIdxFrom="0" routeIdxTo="13" key="AG" priority="100" type="A">Frivillig platsbokning
312                    </Note>
313                    <Note routeIdxFrom="0" routeIdxTo="13" key="AN" priority="100" type="A">Rullstolslyft</Note>
314                </Notes>
315                <Product catCode="2" catOutL="Regional Tåg" catOutS="JRE" name="Regional Tåg 1107" num="1107"
316                         operator="Öresundståg" operatorCode="300" operatorUrl="http://www.oresundstag.se/"/>
317                <Stops>
318                    <Stop depDate="2020-06-02" depTime="18:00:00" routeIdx="0" name="Kalmar Centralstation"
319                          id="740000020" extId="740000020" lon="16.360071" lat="56.661283"/>
320                    <Stop depDate="2020-06-02" depTime="18:15:00" arrDate="2020-06-02" arrTime="18:15:00" routeIdx="1"
321                          name="Nybro station" id="740000189" extId="740000189" lon="15.909172" lat="56.742357"/>
322                    <Stop depDate="2020-06-02" depTime="18:30:00" arrDate="2020-06-02" arrTime="18:29:00" routeIdx="2"
323                          name="Emmaboda station" id="740000096" extId="740000096" lon="15.535895" lat="56.62957"/>
324                    <Stop depDate="2020-06-02" depTime="18:43:00" arrDate="2020-06-02" arrTime="18:43:00" routeIdx="3"
325                          name="Lessebo station" id="740000235" extId="740000235" lon="15.259045" lat="56.749531"/>
326                    <Stop depDate="2020-06-02" depTime="18:49:00" arrDate="2020-06-02" arrTime="18:49:00" routeIdx="4"
327                          name="Hovmantorp station (Lessebo kn)" id="740000511" extId="740000511" lon="15.140666"
328                          lat="56.785838"/>
329                    <Stop depDate="2020-06-02" depTime="19:10:00" arrDate="2020-06-02" arrTime="19:04:00" routeIdx="5"
330                          name="Växjö station" id="740000250" extId="740000250" lon="14.803625" lat="56.876845"/>
331                    <Stop depDate="2020-06-02" depTime="19:33:00" arrDate="2020-06-02" arrTime="19:20:00" routeIdx="6"
332                          name="Alvesta station" id="740000004" extId="740000004" lon="14.556322" lat="56.898778"/>
333                    <Stop depDate="2020-06-02" depTime="19:52:00" arrDate="2020-06-02" arrTime="19:52:00" routeIdx="7"
334                          name="Älmhult station" id="740000045" extId="740000045" lon="14.136985" lat="56.551426"/>
335                    <Stop depDate="2020-06-02" depTime="20:02:00" arrDate="2020-06-02" arrTime="20:02:00" routeIdx="8"
336                          name="Osby station" id="740000295" extId="740000295" lon="13.994254" lat="56.379948"/>
337                    <Stop depDate="2020-06-02" depTime="20:22:00" arrDate="2020-06-02" arrTime="20:18:00" routeIdx="9"
338                          name="Hässleholm Centralstation" id="740000006" extId="740000006" lon="13.763141"
339                          lat="56.157762"/>
340                    <Stop depDate="2020-06-02" depTime="20:36:00" arrDate="2020-06-02" arrTime="20:35:00" routeIdx="10"
341                          name="Höör station" id="740000185" extId="740000185" lon="13.541395" lat="55.937023"/>
342                    <Stop depDate="2020-06-02" depTime="20:46:00" arrDate="2020-06-02" arrTime="20:45:00" routeIdx="11"
343                          name="Eslöv station" id="740000260" extId="740000260" lon="13.305491" lat="55.837719"/>
344                    <Stop depDate="2020-06-02" depTime="20:58:00" arrDate="2020-06-02" arrTime="20:56:00" routeIdx="12"
345                          name="Lund Centralstation" id="740000120" extId="740000120" lon="13.186897" lat="55.708094"/>
346                    <Stop arrDate="2020-06-02" arrTime="21:11:00" routeIdx="13" name="Malmö Centralstation"
347                          id="740000003" extId="740000003" lon="13.00091" lat="55.609456"/>
348                </Stops>
349            </Leg>
350        </LegList>
351    </Trip>
352</TripList>

Inline elements

Images can be included in pages.

.PlainText | safeHTML

The previous image was super wide, the following image isn’t as wide.

.PlainText | safeHTML

Info boxes

This is information

Information

By using bold text and a paragraph, a caption can be added.

This is a note
This is a success
This is a warning
This is an error

Invert everything

Paragraphs

Incididunt ex adipisicing ea ullamco consectetur in voluptate proident fugiat tempor deserunt reprehenderit ullamco id dolore laborum. Do laboris laboris minim incididunt qui consectetur exercitation adipisicing dolore et magna consequat magna anim sunt. Officia fugiat Lorem sunt pariatur incididunt Lorem reprehenderit proident irure. Dolore ipsum aliqua mollit ad officia fugiat sit eu aliquip cupidatat ipsum duis laborum laborum fugiat esse. Voluptate anim ex dolore deserunt ea ex eiusmod irure. Occaecat excepteur aliqua exercitation aliquip dolor esse eu eu.

Text can contain links like this one. Enim aliquip magna id ipsum aliquip consectetur ad nulla quis. Incididunt pariatur dolor consectetur cillum enim velit cupidatat laborum quis ex.

Officia irure in non voluptate adipisicing sit amet tempor duis dolore deserunt enim ut. Reprehenderit incididunt in ad anim et deserunt deserunt Lorem laborum quis. Enim aute anim labore proident laboris voluptate elit excepteur in. Ex labore nulla velit officia ullamco Lorem Lorem id do. Dolore ullamco ipsum magna dolor pariatur voluptate ipsum id occaecat ipsum. Dolore tempor quis duis commodo quis quis enim.

Blockquotes

This is a quote:

Ipsum et cupidatat mollit exercitation enim duis sunt irure aliqua reprehenderit mollit. Pariatur Lorem pariatur laboris do culpa do elit irure. Eiusmod amet nulla voluptate velit culpa et aliqua ad reprehenderit sit ut.

Emphasis

Text can be bold, in italics, or you can use strikethrough.

Lists

Ordered List

  1. One
  2. Two
  3. Three
    • Three A
    • Three B
    • Three C
  4. Four

Unordered List

  • Train
  • Bus
    • Red bus
    • Blue bus
  • Boat
  • A train is a form of rail transport consisting of a series of connected vehicles that generally run along a railroad ( or railway) track to transport passengers or cargo (also known as “freight” or “goods”). The word train comes from the Old French trahiner, derived from the Latin trahere meaning ’to pull, to draw'

Horizontal rule

A horizontal rule is shown between this paragraph and the next one.


A horizontal rule is shown between the previous paragraph and this one.

Table

Some text before a table

Table Heading 1Table Heading 2Center alignRight alignTable Heading 5
Item 1Item 2Item 3Item 4Item 5
Item 1Item 2Item 3Item 4Item 5
Item 1Item 2Item 3Item 4Item 5
Item 1Item 2Item 3Item 4Item 5
Item 1Item 2Item 3Item 4Item 5

Some text after a table

Code

Inline code

We can show code in text using single backticks. You can even show HTML tags <strong>in culpa qui officia</strong> this way.

Highlighted

It is possible to show a code snippet with syntax highlighting

 1package main
 2
 3import (
 4	"fmt"
 5	"net/http"
 6)
 7
 8func handler(w http.ResponseWriter, r *http.Request) {
 9	fmt.Fprintf(w, "Hi there, I love %s!", r.URL.Path[1:])
10}
11
12func main() {
13	http.HandleFunc("/", handler)
14	http.ListenAndServe(":8080", nil)
15}

Some text after the code so you can see the margins.