Footnotes in Github Flavored Markdown (tested also in http://atom.io)
Footnote in sup
. [0][roblabs]
<sup>[0][roblabs]</sup>
Footnote in sup
+ brackets. [[0][roblabs]]
<sup>[[0][roblabs]]</sup>
{ | |
"baseLayer": { | |
"tilejson": "2.2.0", | |
"name": "base", | |
"version": "1.0.0", | |
"scheme": "xyz", | |
"tiles": [ | |
"https://a.tile.openstreetmap.org/{z}/{x}/{y}.png" | |
] | |
}, |
{ | |
"baseLayer": { | |
"tilejson": "2.2.0", | |
"name": "base", | |
"version": "1.0.0", | |
"scheme": "xyz", | |
"tiles": ["https://a.tile.openstreetmap.org/{z}/{x}/{y}.png"] | |
}, | |
"diffLayerLeftId": -1, | |
"diffLayerRightId": -1, |
Footnote in sup
. [0][roblabs]
<sup>[0][roblabs]</sup>
Footnote in sup
+ brackets. [[0][roblabs]]
<sup>[[0][roblabs]]</sup>
#!/bin/bash -e | |
# -------------------------------------------------------- | |
# Generate app icons and xcassets file from a single image | |
# Ben Clayton, Calvium Ltd. | |
# https://gist.github.com/benvium/2be6d673aa9ac284bb8a | |
# -------------------------------------------------------- | |
# | |
# Usage with an input of 1024x1024 PNG file | |
# generateAppIcon.sh AppIcon.png |
#!/bin/bash -e | |
# -------------------------------------------------------- | |
# Generate iOS Launch items from a single image | |
# (c) 2017 ePi Rational, Inc. | |
# | |
# Modified from original script which generated app icons for iOS, | |
# originally written by | |
# Ben Clayton, Calvium Ltd. | |
# https://gist.github.com/benvium/2be6d673aa9ac284bb8a |