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
body | |
{ | |
background: #212121; | |
margin-top: 1px; | |
margin-right: 3px; | |
margin-left: 2px; | |
margin-bottom: 3px; | |
color: #f0f0f0; | |
font-family: EB Garamond; | |
line-height: 1.3; |
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
use AppleScript version "2.4" -- Yosemite (10.10) or later | |
use scripting additions | |
-- Script to link Bibdesk entries to DEVONthink Pro records along with custom metadata - by Bernardo Vasconcelos (July 2019). | |
-- This script is based on Kyle Eggletons script for Bookends and DEVONthink, April 2019. | |
-- Use at your own risk | |
tell application "BibDesk" | |
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
on performSmartRule(theRecords) | |
tell application id "DNtp" | |
try | |
set these_items to the selection | |
if these_items is {} then error "Please select some contents." | |
repeat with this_item in these_items |
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
tell application id "DNtp" | |
set theRecords to the selection | |
if theRecords is {} then error "Please select some contents." | |
repeat with theRecord in theRecords | |
set customMD to custom meta data of theRecord | |
try | |
set theBibkey to mdbibkey of customMD |
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
html { | |
height: 100%; | |
margin: 0; | |
} | |
body { | |
background-color: #434140; | |
color: #ffffff; | |
font-family: 'Gentium Plus'; | |
font-synthesis: weight; | |
height: 100%; |
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
/************************************************************** | |
"Learning with Texts" (LWT) is free and unencumbered software | |
released into the PUBLIC DOMAIN. | |
Anyone is free to copy, modify, publish, use, compile, sell, or | |
distribute this software, either in source code form or as a | |
compiled binary, for any purpose, commercial or non-commercial, | |
and by any means. |
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
/* "Cormorant Garamond SemiBold" */ | |
body { | |
font-family: "Alegreya"; | |
-ms-text-size-adjust: 100%; | |
-webkit-text-size-adjust: 100% margin: 0; | |
padding: 50px 2rem 2rem; | |
width: auto; | |
/* max-width: 800px; */ | |
} |
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
/* San Ho Dark - https://www.dropbox.com/s/pbd8ka36rflz71c/Captura%20de%20tela%202020-01-06%2020.59.31.png?dl=0 */ | |
body { | |
font-family: "EB Garamond"; | |
-ms-text-size-adjust: 100%; | |
-webkit-text-size-adjust: 100% margin: 0; | |
padding: 50px 2rem 2rem; | |
max-width: 800px; | |
} |
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
/* global */ | |
:root | |
{ | |
--font-size-normal: 26px; | |
--font-size-code: 22px; | |
--font-size-side-dock: 13.5px; | |
--font-size-side-dock-title: 15px; | |
--font-size-blockquote: 20px; | |
--font-size-status-bar: 12px; | |
--line-height-preview: 1.7em; |
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
#!/usr/bin/env ruby | |
# frozen_string_literal: false | |
# bcdav 2021 | |
# inspired by https://github.com/ltrgoddard/inliner | |
Encoding.default_external = Encoding::UTF_8 | |
class String | |
def inline_mmd |
OlderNewer