Bookmarklet Browser Enhancement Readability
Readable is an application that helps you read more of the web. It reformats text — on any website — according to your exact specifications.
/* Zenburn theme for fossil */ | |
/* forked from https://gist.github.com/jsilence/1259056 */ | |
/* https://kippura.org/zenburnpage/ */ | |
/* http://fossil-scm.org | Updated for v. 2.24 */ | |
/* Some tables have their styles hardcoded. :( */ | |
/* Any feedback and contribution is welcome */ | |
/* General settings for the entire page */ | |
body { | |
margin: 0ex 0ex; |
Bookmarklet Browser Enhancement Readability
Readable is an application that helps you read more of the web. It reformats text — on any website — according to your exact specifications.
function scripturesort($a, $b) { | |
if ($a == $b) {return 0;} | |
$order=array("Genesis", "Exodus", "Leviticus", "Numbers", "Deuteronomy", "Joshua", "Judges", "Ruth", "1 Samuel", "2 Samuel", "1 Kings", "2 Kings", "1 Chronicles", "2 Chronicles", "Ezra", "Nehemiah", "Esther", "Job", "Psalm", "Proverbs", "Ecclesiastes", "Song of Solomon", "Isaiah", "Jeremiah", "Lamentations", "Ezekiel", "Daniel", "Hosea", "Joel", "Amos", "Obadiah", "Jonah", "Micah", "Nahum", "Habakkuk", "Zephaniah", "Haggai", "Zechariah", "Malachi", "Matthew", "Mark", "Luke", "John", "Acts", "Romans", "1 Corinthians", "2 Corinthians", "Galatians", "Ephesians", "Philippians", "Colossians", "1 Thessalonians", "2 Thessalonians", "1 Timothy", "2 Timothy", "Titus", "Philemon", "Hebrews", "James", "1 Peter", "2 Peter", "1 John", "2 John", "3 John", "Jude", "Revelation"); | |
$fa = $a; | |
$fb = $b; | |
preg_match('/^..(.+?)\b/', $a, $matches); | |
$a = trim(substr($matches[0],0,4)); |
Biblical Hermeneutics questions closed as:
Questions regarding systematic theology are off-topic. For more information, see this meta post.
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="x-ua-compatible" content="ie=edge, chrome=1" /> | |
<title>untitled</title> | |
<!-- link rel="stylesheet" href="" / --> | |
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/3.18.1/build/cssfonts/cssfonts-min.css"> | |
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/3.18.1/build/cssbase/cssbase-min.css"> |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
<meta name="viewport" content="width=device-width, user-scalable=no" /> | |
<title>untitled</title> | |
<link rel="stylesheet" href="" /> | |
</head> | |
<body> |
<?php | |
/** | |
* Loads any layout files(.php) contained inside the theme folders. | |
* | |
* @package wolf | |
* @subpackage plugin.layout_loader | |
* | |
* @author Adrian Unger <spam{at}staydecent.ca> | |
* @version 1.1 |