toggle_comment ctrl+/ toggle_comment ctrl+shift+/
duplicate_line ctrl+shift+d
strip_html ctrl+shift+h
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> | |
<title>Test Plusieurs labels</title> | |
<link rel="stylesheet" href="master.css" type="text/css" media="screen"> | |
</head> | |
<body> | |
<form action="index" method="post" onsubmit="alert('Formulaire de test,\nl\'envoi n\'est pas géré');return false;"> | |
<h1>Rédaction d'un article</h1> | |
<div id="error_list"> | |
<p><strong>Enregistrement impossible :</strong></p> |
/* Basculer photoshop français anglais */* | |
alt + shift |
class="[a-zA-Z0-9:;\.\s\(\)\-\,]*" |
{ | |
"version" : "4.1.6", | |
"changelog" : "see on github", | |
"url": "https://gist.github.com/maximelebreton/dd88a04420c3d64078dc4d3be8437386" | |
} |
// http://alistapart.com/article/using-css-mod-queries-with-range-selectors | |
// range selector mixin | |
@mixin select-range($start, $end){ | |
&:nth-child(n+#{$start}):nth-child(-n+#{$end}){ | |
@content; | |
} | |
} | |
// mod query mixin | |
@mixin mod-list($mod, $remainder){ |