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)
Sometimes you want to have a subdirectory on the master
branch be the root directory of a repository’s gh-pages
branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master
branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist
.
Remove the dist
directory from the project’s .gitignore
file (it’s ignored by default by Yeoman).
/* Here's the compiled CSS */ | |
@import url("http://fonts.googleapis.com/css?family=Droid+Sans"); | |
body { | |
font-family: Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; | |
font-size: 14px; | |
line-height: 25px; | |
font-weight: 300; | |
color: #444; | |
} |
Curved text in SVG isn't too hard, as long as you understand how to define different kinds of curved <path>
elements in SVG. When you have a curved <path>
defined in a <defs>
elements (usually just inside your root <svg>
), to make the text inside a <text>
element follow that <path>
, all that's required is to insert a <textPath>
inside the <text>
, with an xlink:href
attribute that links to the id
of the defined <path>
. The actual text for display also gets added inside the <textPath>
, like so:
<text>
<textPath xlink:href="#yourPath">
Your text
</textPath>
<!doctype html> | |
<html> | |
<head> | |
<title>This is the title of the webpage!</title> | |
</head> | |
<body> | |
<p>This is an example paragraph. Anything in the <strong>body</strong> tag will appear on the page, just like this <strong>p</strong> tag and its contents.</p> | |
</body> | |
</html> |
autocomplete="off"
onto <form>
element;<input>
with autocomplete="false"
as a first children element of the form.<form autocomplete="off" method="post" action="">
<input autocomplete="false" name="hidden" type="text" style="display:none;">
...
(source: http://webapps.stackexchange.com/a/80416/133151)
There are 4 language-related options.
hl=
Example: www.google.com/search?q=vilnius&hl=lt
lr=lang_
--- General --- | |
Undo: cmd + Z | |
Redo: cmd + shift + Z | |
Redo: cmd + Y | |
Setup/Animate Mode: cmd + TAB | |
Zoom To Fit: cmd + shift + F | |
Zoom To 100%: cmd + F | |
Lock Zoom: | |
Fullscreen: cmd + shift + opt + F | |
Always On Top: cmd + shift + opt + T |