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
<h1>화순군 버스정보</h1> | |
20.06.16 방면별 화순 운행시간표 (2020-06-17)<br> | |
<a href="http://bis.hwasun.go.kr/guide/notice/noticeView?SEQ=24">http://bis.hwasun.go.kr/guide/notice/noticeView?SEQ=24</a><br> | |
<br> | |
<table align="center" border="1" cellpadding="2" cellspacing="2" style="width: 430px; height: 400px;"> | |
<thead> | |
<tr> | |
<th colspan="5" scope="col" style="text-align: center;"> |
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
javascript:(function() { | |
var markdown = "[" + document.title + "](" + window.location.href + ")"; | |
var fakeElem = document.createElement('textarea'); | |
fakeElem.value = markdown; | |
fakeElem.setAttribute('readonly', ''); | |
fakeElem.style.position = 'absolute'; | |
fakeElem.style.left = '-9999px'; | |
document.body.appendChild(fakeElem); | |
fakeElem.select(); | |
document.execCommand('copy'); |
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
javascript:(function() { | |
var title = document.title; | |
var url = window.location.href; | |
var markdown = `[${title}](${url})`; | |
navigator.clipboard.writeText(markdown).then(function() { | |
console.log("Copied to clipboard: " + markdown); | |
}, function(err) { | |
console.error("Failed to copy text: ", err); | |
}); | |
})() |
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
javascript:(/*Add to Daily note in Obsidian*/function(){ | |
/* Bookmarklet: 웹 페이지 제목과 주소를 `- 07:30 [T](U)`형식으로 Obsidin의 Daily note에 한 줄 덧붙이기 */ | |
/* 설정 시작 ============== */ | |
let valult_name = "V-07"; /* 옵시디안의 볼트 이름 */ | |
let daily_note_folder = "journals"; /* Daily note 저장 폴더 */ | |
/* 설정 끝 ================ */ | |
/* 컴퓨터에 설정된 지역 날짜와 시간을 얻기 */ | |
var timezoneOffset = new Date().getTimezoneOffset() * 60000; |
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
/* | |
1. 노트의 frontmatter에 추가 (Add to the Frontmatter of the notes you want) | |
cssclass: my_style_width_100 | |
2. "Settings > Appearance > CSS Snippets"에 설정 (Set to "Settings > Appearance > CSS Snippets") | |
my_style.css에 추가 (Add to my_style.css) | |
*/ | |
/* Editing View */ | |
.my_style_width_100 .cm-sizer, |
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
/* | |
1. 노트의 frontmatter에 추가 (Add to the Frontmatter of the notes you want) | |
cssclass: width-100 | |
2. "Settings > Appearance > CSS Snippets"에 설정 (Set to "Settings > Appearance > CSS Snippets") | |
my_style.css에 추가 (Add to my_style.css) | |
*/ | |
.view-content > .width-100.markdown-source-view.mod-cm6 > .cm-editor > .cm-scroller { |
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
/* | |
1. 노트의 frontmatter에 추가 (Add to the Frontmatter of the notes you want) | |
cssclass: wide | |
cssclass: max | |
2. "Settings > Appearance > CSS Snippets"에 설정 (Set to "Settings > Appearance > CSS Snippets") | |
my_style.css에 추가 (Add to my_style.css) | |
*/ | |
.markdown-preview-view.wide, .markdown-source-view.wide, |
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
<%_* | |
/* | |
@2023-04-05 20:00:00 | |
노트의 frontmatter에 추가 (Add to the Frontmatter of the notes you want) | |
url: 교보문고 도서 url | |
*/ | |
const url = tp.frontmatter["url"]; |
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
javascript:(function(){ | |
/* Optional vault name */ | |
const vault = "V-07"; | |
/* Optional folder name such as "Clippings/" */ | |
const folder = "Scraps/"; | |
/* Optional tags */ | |
const tags = "#clippings"; |
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
javascript: Promise.all([import('https://unpkg.com/[email protected]?module'), import('https://unpkg.com/@tehshrike/[email protected]'), ]).then(async ([{ | |
default: Turndown | |
}, { | |
default: Readability | |
}]) => { | |
/* Optional 'Local REST API' Port number */ | |
const REST_API_PORT = 27124; | |
/* Optional 'Local REST API' key */ | |
const REST_API_KEY = "Put your 'Local REST API' key value here."; |
OlderNewer