A full-featured markdown parser and compiler, written in javascript. Built for speed.
node v0.4.x
$ node test --bench
<?php | |
/** | |
* Override's some of Parsedown's features to add support for github style task lists. | |
* You must build your own serverside & client side components for updating the markdown. | |
* The value of the checkbox is it's index of the checkbox based on all of the checkboxes found in the markdown. | |
* @see https://github.com/erusev/parsedown | |
*/ | |
class TaskListParsedown extends Parsedown { | |
protected $taskListIndex=0; | |
jQuery Touch Gestures ported from QUOjs | |
@see http://quojs.tapquo.com/ | |
Version 1.1 | |
-- @add singleTap event | |
-- @fix doubleTap event | |
-- @fix hold event |
#! /usr/bin/python | |
Facebook_Username = "your_email" | |
Facebook_Password = "your_password" | |
from sys import exit, stdout | |
import traceback | |
import mechanize | |
import time | |
import os |
#!/usr/bin/env python3 | |
import sys | |
import json | |
import os | |
import os.path | |
import shutil | |
import logging | |
import tempfile | |
import glob | |
import argparse |
# | |
# Copyright (C) 2013-2020 Vinay Sajip. New BSD License. | |
# | |
import os | |
import os.path | |
from subprocess import Popen, PIPE | |
import sys | |
from threading import Thread | |
from urllib.parse import urlparse | |
from urllib.request import urlretrieve |
from bs4 import BeautifulSoup | |
import os | |
import re | |
import requests | |
import urlparse | |
import smtplib | |
from smtplib import SMTP | |
from smtplib import SMTP_SSL | |
from smtplib import SMTPAuthenticationError |