let textNodes = document.querySelectorAll("div.tt_article_useless_p_margin.contents_style > *:not(figure):not(pre)"); textNodes.forEach(function(a) { a.innerHTML = a.innerHTML.replace(/`(.*?)`/g, '$1'); });
$1
iOS를 좋아하는 사람의 블로그
if let url = URL(string: address) { let workspace = NSWorkspace.shared workspace.open(url) } url에는 file:// 로시작하는 파일 주소가 들어가면 됩니다