This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
import markdown | |
from markdown.util import etree | |
class AdmonitionExtension(markdown.Extension): | |
def extendMarkdown(self, md, md_globals): | |
md.registerExtension(self) |