Skip to content

Instantly share code, notes, and snippets.

{
"a": 8.167,
"b": 1.492,
"c": 2.782,
"d": 4.253,
"e": 12.702,
"f": 2.228,
"g": 2.015,
"h": 6.094,
"i": 6.966,
@slig
slig / jquery.easing.ts
Created April 28, 2018 16:14
jQuery Easing v1.4.1 converted to TypeScript
/*
* jQuery Easing v1.4.1 - http://gsgd.co.uk/sandbox/jquery/easing/
* Open source under the BSD License.
* Copyright © 2008 George McGinley Smith
* All rights reserved.
* https://raw.github.com/gdsmith/jquery-easing/master/LICENSE
*/
import jQuery from 'jquery';
const $ = jQuery;
@slig
slig / admonition.py
Created August 27, 2012 11:35
admonitions extension for python-markdown
import re
import markdown
from markdown.util import etree
class AdmonitionExtension(markdown.Extension):
def extendMarkdown(self, md, md_globals):
md.registerExtension(self)