markdown: compile_on_save
option. Converttest.src.md
totest.md
file automatically.- Use
plantuml-encoder
to display images rather than converting svg to png myself.
This file contains hidden or 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
const x = 12 | |
const y = 14 | |
return { | |
title: "Hi", | |
message: "Yoo" | |
} |
This file contains hidden or 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
{ | |
name: bilibili, | |
triggers: { | |
subscribe_user: { | |
title: "up主最新视频更新", | |
config: { | |
id: { | |
type: "string", | |
title: "up主数字id", | |
description: "例如 space.bilibili.com/**122879**", |
This file contains hidden or 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
console.log("Hello JavaScript and World") |
This file contains hidden or 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
(function(args={}) { // event = {url, cheerio, $get} | |
return new Promise((resolve, reject)=> { | |
const name = args['name'] | |
const url = encodeURI(`http://www.fixsub.com/portfolio/${name}`) | |
request.get({ | |
url, | |
headers: { | |
'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36' | |
} | |
}, function(error, response, body) { |
This file contains hidden or 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
import Vue from "vue" | |
import Component from 'vue-class-component' | |
@Component({ | |
template: `<div> | |
This is test {{message}} | |
<p v-for="l in list"> | |
{{l}} | |
</p> | |
</div>`, |
This file contains hidden or 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
0x26ccA438c742Bb5919548c5E2641788d0186f6A8 |
- Visit: https://calendar.google.com, click the gear then click
Settings
.
- Choose
Calendars
section, then clickExport calendars
to export.
- Visit: https://calendar.google.com, click the arrow on the right side of
RV Shared Calendar
then chooseCalendar settings
.
- Choose
Edit notifications
section, then you can enable the nofication that you like, likeDaily agenda
. ClickSave
to save the changes.
This file contains hidden or 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
const fs = require('fs'), | |
path = require('path') | |
function spaceAhead(n) { | |
let outputString = '' | |
for (let i = 0; i < n; i++) { | |
outputString += ' ' | |
} | |
return outputString | |
} |
OlderNewer