- ver1.1.1が出て直ったのでインストールし直せば以下のようなことにはならない。
- Windows 7 64bit で
electron-prebuilt
が正しくインストールできなくて動かない extract-zip
のバグっぽい- 手動でファイルコピーすればいけた
h1 { | |
counter-reset: section_h2; | |
} | |
h2 { | |
counter-reset: section_h3; | |
} | |
h3 { | |
counter-reset: section_h4; | |
} | |
h4 { |
<template> | |
<div :class="$style.wrapper" v-bind="$attrs"> | |
<div :class="$style.container"> | |
<slot /> | |
</div> | |
</div> | |
</template> | |
<style module> | |
.wrapper { | |
box-sizing: border-box; |
<template> | |
<span | |
:class="$style.actionicon" | |
:style="{ backgroundImage, width, height, borderRadius: radius + 'px' }" | |
@mouseover="onMouseover" | |
@click="onClick" | |
> | |
<span :class="$style.highlight" /> | |
</span> | |
</template> |
@echo off | |
:: https://blogs.technet.microsoft.com/jpwsus/2017/05/15/wannacrypt-ms17-010-wsus/ | |
:: https://en.wikipedia.org/wiki/Ver_(command) | |
set RUN_AS_CMD=0 | |
if "%1"=="/c" ( set RUN_AS_CMD=1 ) | |
echo OS確認中... | |
ver | find /I "Version 5.1." > nul |
#################### | |
# markdown to html | |
# (For Windows) | |
#################### | |
DRAFTS_DIR_NAME := _drafts | |
SITE_ROOT_DIR := $(shell cd) | |
# template file | |
TEMPLATE_EXT := _template | |
TEMPLATE_FILE := _template.$(TEMPLATE_EXT) |
/*! @source http://purl.eligrey.com/github/FileSaver.js/blob/master/FileSaver.js */ | |
var saveAs=saveAs||function(e){"use strict";if("undefined"==typeof navigator||!/MSIE [1-9]\./.test(navigator.userAgent)){var t=e.document,n=function(){return e.URL||e.webkitURL||e},o=t.createElementNS("http://www.w3.org/1999/xhtml","a"),r="download"in o,i=function(e){var t=new MouseEvent("click");e.dispatchEvent(t)},a=/Version\/[\d\.]+.*Safari/.test(navigator.userAgent),c=e.webkitRequestFileSystem,f=e.requestFileSystem||c||e.mozRequestFileSystem,u=function(t){(e.setImmediate||e.setTimeout)(function(){throw t},0)},d="application/octet-stream",s=0,l=4e4,v=function(e){var t=function(){"string"==typeof e?n().revokeObjectURL(e):e.remove()};setTimeout(t,l)},p=function(e,t,n){t=[].concat(t);for(var o=t.length;o--;){var r=e["on"+t[o]];if("function"==typeof r)try{r.call(e,n||e)}catch(i){u(i)}}},w=function(e){return/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(e.type)?new Blob(["\ufeff",e],{type:e.typ |
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>腐葉土</title> | |
<link href='https://fonts.googleapis.com/css?family=Allura' rel='stylesheet' type='text/css'> | |
<style> | |
.AlluraFont { font-family: 'Allura'; } | |
table, td, th { | |
border-collapse: collapse; |
@if(0)==(0) echo off | |
:: | |
:: get cmd.exe and cscript.exe | |
:: SysNative alias is avalable if this is 32bit-cmd.exe on 64bit-system. | |
:: %WinDir%\SysNative\cmd.exe is 64bit-cmd.exe. | |
:: | |
set CSCRIPT32= | |
set CSCRIPT64= | |
set CMD32= | |
set CMD64= |
set OS_BIT=x64 | |
set CMD_BIT=x64 | |
if "%PROCESSOR_ARCHITECTURE%" EQU "x86" ( | |
set CMD_BIT=x86 | |
if NOT DEFINED PROCESSOR_ARCHITEW6432 set OS_BIT=x86 | |
) | |
echo %CMD_BIT% command prompt on %OS_BIT% OS. |
electron-prebuilt
が正しくインストールできなくて動かないextract-zip
のバグっぽい