To create an anchor to a heading in github flavored markdown.
Add - characters between each word in the heading and wrap the value in parens (#some-markdown-heading)
so your link should look like so:
[create an anchor](#anchors-in-markdown)
<?php | |
$provider = new stdClass; | |
$provider->disabled = FALSE; /* Edit this to true to make a default provider disabled initially */ | |
$provider->name = 'twitter'; | |
$provider->title = 'Twitter'; | |
$provider->url = 'http://api.twitter.com'; | |
$provider->consumer_advanced = array( | |
'signature method' => 'HMAC-SHA1', | |
'request token endpoint' => '/oauth/request_token', | |
'authorization endpoint' => '/oauth/authenticate', |
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
. ~/.bashrc | |
mkdir ~/local | |
mkdir ~/node-latest-install | |
cd ~/node-latest-install | |
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
./configure --prefix=~/local | |
make install # ok, fine, this step probably takes more than 30 seconds... | |
curl https://www.npmjs.org/install.sh | sh |
#!/bin/sh | |
# | |
# /etc/init.d/tomcat7 -- startup script for the Tomcat 7 servlet engine | |
# | |
# Written by Miquel van Smoorenburg <[email protected]>. | |
# Modified for Debian GNU/Linux by Ian Murdock <[email protected]>. | |
# Modified for Tomcat by Stefan Gybas <[email protected]>. | |
# Modified for Tomcat6 by Thierry Carrez <[email protected]>. | |
# Additional improvements by Jason Brittain <[email protected]>. | |
# |
/************************************************************************** | |
* OSM2GEO - OSM to GeoJSON converter | |
* OSM to GeoJSON converter takes in a .osm XML file as input and produces | |
* corresponding GeoJSON object. | |
* | |
* AUTHOR: P.Arunmozhi <[email protected]> | |
* DATE : 26 / Nov / 2011 | |
* LICENSE : WTFPL - Do What The Fuck You Want To Public License | |
* LICENSE URL: http://sam.zoy.org/wtfpl/ | |
* |
L.TileLayer.TileJSON = L.TileLayer.Canvas.extend({ | |
options: { | |
debug: false | |
}, | |
tileSize: 256, | |
initialize: function (options) { | |
L.Util.setOptions(this, options); |
// Lefalet shortcuts for common tile providers - is it worth adding such 1.5kb to Leaflet core? | |
L.TileLayer.Common = L.TileLayer.extend({ | |
initialize: function (options) { | |
L.TileLayer.prototype.initialize.call(this, this.url, options); | |
} | |
}); | |
(function () { | |
Aolepān Aorōkin M̧ajeļ,2,160.594934,4.374000,172.373701,4.374000 | |
Venezuela,2,-73.352963,0.649000,-59.801389,0.649000 | |
Haut-Sassandra,4,-7.091278,6.247707,-5.929391,6.247707 | |
Moyen-Comoé,4,-3.799104,5.768070,-3.076371,5.768070 | |
Agnéby,4,-4.630457,5.585275,-3.388777,5.585275 | |
Zanzan,4,-4.310556,7.063955,-2.487778,7.063955 | |
Sud-Comoé,4,-3.914339,4.900099,-2.716111,4.900099 | |
Bafing,4,-8.248767,7.841033,-7.058450,7.841033 | |
Bas-Sassandra,4,-7.590833,4.164227,-5.702062,4.164227 | |
Vallée du Bandama,4,-5.734021,7.233421,-3.903352,7.233421 |
@mixin ribbon($color, $ribbon-thickness, $notch-color, $notch-side) { | |
@include background-image(linear-gradient(lighten($color, 20%), darken($color, 10%))); | |
@include inline-block; | |
position: absolute; | |
padding-#{$notch-side}: $ribbon-thickness; | |
@if $notch-side == left { | |
height: $ribbon-thickness; | |
line-height: $ribbon-thickness; | |
right: -2px; | |
padding-right: 10px; |
// Create map layers | |
var layers = { | |
'Seafloor': L.tileLayer('tiles/nz-seafloor/{z}/{x}/{y}.png', { | |
maxZoom: 9, | |
attribution: '<a href="http://www.niwa.co.nz/our-science/oceans/bathymetry">NIWA</a>' | |
}), | |
'Topographic': L.tileLayer('tiles/nz-topo/{z}/{x}/{y}.png', { | |
attribution: '<a href="http://data.linz.govt.nz/">LINZ</a>, <a href="http://lris.scinfo.org.nz/">LRIS</a>' | |
}), |