Skip to content

Instantly share code, notes, and snippets.

View seokjeon's full-sized avatar
👉

JEON Se-Ok seokjeon

👉
View GitHub Profile
@seokjeon
seokjeon / Export md from devto article.js
Created September 27, 2021 23:04
Export md from dev.to article
// Copy the code below, and paste it on address bar where you want to export markdown.
javascript:var url=window.location.href.split("/");url.splice(3,0,"api","articles"),fetch(url.join("/")).then(o=>o.json()).then(o=>console.log(o.body_markdown));