hi.
<div>hi</div>
$color: #43BBC5; | |
@function shadow($count, $width, $size, $offset) { | |
$bs: (); | |
@for $i from 0 through $count { | |
$r: $width/2; | |
$x: $r*cos($i*2*pi()/$count + $offset) + px; | |
$y: $r*sin($i*2*pi()/$count + $offset) + px; | |
$bs: $bs, $x $y 0px $size + px $color; | |
} |
Chriss-MacBook-Pro-4:codepen2 chriscoyier$ node --version | |
v0.8.20 | |
{ | |
"name": "example-project", | |
"version": "0.1.0", | |
"devDependencies": { | |
"gulp": "~3.4.0", | |
"gulp-util": "~2.2.14", | |
"gulp-autoprefixer": "0.0.6", |
hi.
<div>hi</div>
A Pen by Chris Coyier on CodePen.
// Figure Inserting | |
function html5_insert_image($html, $id, $caption, $title, $align, $url) { | |
$html5 = "<figure id='post-$id media-$id' class='align-$align'>"; | |
$html5 .= "<img src='$url' alt='$title' />"; | |
if ($caption) { | |
$html5 .= "<figcaption>$caption</figcaption>"; | |
} | |
$html5 .= "</figure>"; | |
return $html5; | |
} |
Howdy! We use CodeMirror as our editor on CodePen. We also use the Emmet add on for it. We love it. The users love it. It's also very very big at 831k (before compression and stuff).
I've been wanting to optimize it for a while, I've just struggled with it the few times I've tried, and think maybe one of you smart people might be able to do the job more efficiently.
Here's what our custom version of Emmet.js would be like:
This is a sample sentence to test Markdown in the comments of a WordPress blog with Jetpack Markdown enabled for comments.
<h1 id="test">This is a code block</h1>
<head>
<script>alert("Anything goes in here");</script>
<meta>because it just should just be escaped anyway</meta>
</head>
function myprefix_kses_allowed_tags($input){ | |
return array_merge( $input, array( | |
// paragraphs | |
'p' => array( | |
'style' => array() | |
), | |
'span' => array( | |
'style' => array() | |
), | |
'div' => array( |
<div class="col"> | |
test | |
</div> |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="google" value="notranslate"> | |
<title>CodePen Overloaded</title> | |
<style> |