Repro for electron/electron#39701
To Test:
gh gist clone https://gist.github.com/inukshuk/7374963a8bc966d5da72a38da3402d70
cd 7374963a8bc966d5da72a38da3402d70
npm install
npm run build
npm start
For comparison with older Electron:
Repro for electron/electron#39701
To Test:
gh gist clone https://gist.github.com/inukshuk/7374963a8bc966d5da72a38da3402d70
cd 7374963a8bc966d5da72a38da3402d70
npm install
npm run build
npm start
For comparison with older Electron:
sharp_libvips_binary_host=https://github.com/tropy/sharp-libvips/releases/download | |
sharp_install_force=true |
gems: | |
- 'jekyll/scholar' | |
scholar: | |
bibliography_template: "{{ reference | replace_first: 'Zelle, R. M.', '<b>Zelle, R. M.</b>' }}" |
<?xml version="1.0" encoding="UTF-8"?> | |
<dataset> | |
<sequence><author>Mathews, Jay</author><date>(2009):</date><title>Work Hard. Be Nice.: How Two Inspired Teachers Created the Most Promising Schools in America.</title><location>Chapel Hill:</location><publisher>Alconquin Books</publisher><date>2009</date><edition>Kindle Edition</edition><note>Mathews, Jay: Work Hard. Be Nice.: How Two Inspired Teachers Created the Most Promising Schools in America. Chapel Hill: Alconquin Books. Kindle Edition.</note></sequence> | |
<sequence><author>Maier, Uwe/ Hofmann, Florian/ Zeitler, Sigrid</author><date>(2012):</date><title>Formative Leistungsdiagnostik. Grundlagen und Praxisbeispiele.</title><location>München:</location><publisher>Oldenbourg.</publisher><journal>In: Schulmanagement Handbuch 141.</journal></sequence> | |
<sequence><author>Maier, Uwe</author><date>(2010):</date><title>Formative Assessment - Ein erfolgversprechendes Konzept zur Reform von Unterricht und Leistungsmessung?</title><journal>In: Zeitschrift für Erziehung |
This is a sample Jekyll-Scholar bibliography template. The file bibliography.html
should be placed in the _layouts
directory. Furthermore, this assumes you have a ./pdf
directory: this directory contains all you PDFs or Postscripts (possibly in sub-directories of ./pdf
), e.g.: ./pdf/Bartlett-2010-ICML.pdf
and ./pdf/talks/Wood-2004-EMBS.pdf
both work. You can specify the repository root folder using the repository
configuration option.
The bibliography template assumes you have Bootstrap configured on your site.
[ | |
{ | |
"@type": "Item", | |
"template": "https://tropy.org/v1/templates/dc", | |
"http://purl.org/dc/elements/1.1/title": "Veduta di Castel St Angelo. S. Pietro", | |
"http://purl.org/dc/elements/1.1/creator": " Eugène Constant", | |
"http://purl.org/dc/elements/1.1/type": "Foto", | |
"http://purl.org/dc/elements/1.1/source": " Gilman Collection, Museum Purchase, 2005 ", | |
"http://purl.org/dc/elements/1.1/rights": "Public Domain", | |
"http://purl.org/dc/elements/1.1/identifier": "2005.100.799 (9)", |
#!/bin/bash | |
set -e | |
if [ $# -lt 2 ]; then | |
echo | |
echo "Usage: $0 PROJECT SEARCH_PATH" | |
echo "Find missing photos in your Tropy project" | |
echo | |
echo "Please specify the Tropy PROJECT file and a folder as the SEARCH_PATH" |
#!/usr/bin/env ruby | |
require 'json' | |
input = ARGV[0] | |
items = [] | |
def create_item(title) | |
{ | |
'template' => 'https://tropy.org/v1/templates/generic', |
require 'anystyle' | |
require 'citeproc/ruby' | |
require 'csl/styles' | |
# Load all dependent CSL styles and create a Renderer | |
# Those should be cached! | |
styles = CSL::Style.list.map { |id| CSL::Style.load id }.reject { |s| s.bibliography.nil? } | |
cp = CiteProc::Ruby::Renderer.new | |
# Parse a reference to CSL/JSON |
#!/usr/bin/env ruby | |
require 'csl/styles' | |
require 'citeproc/ruby' | |
require 'httparty' | |
require 'thread' | |
API_KEY = '' # Add your key here! | |
exit if API_KEY.empty? |