sublime outline notes publisher
1.0.0
탭 들여쓰기 메모나 마크다운(md)을 사용하여 HTML 페이지를 게시하세요! Sublime Text의 Obsidian입니다.
코드 편집기를 사용하여 종속성 없이 게시할 수 있습니다.
완벽한 대상:
All you have to do...
Is create an indented hierarchy.
Of your notes.
In a list.
It will create a nice HTML file...
With a hierarchy based on indent levels.
Isn't this convenient?
Whitespace significant outliner style notes!
Other cool outliners:
[Bike](https://news.ycombinator.com/item?id=31409077)
Dynalist
[Obsidian](https://obsidian.md)
[Obsidian Publish](https://obsidian.md/publish)
Workflowy
Roam Research
Notion
Standard Notes
Evernote
Ever-who? ?
Only for:
Sublime Text (https://sublimetext.com)
Super Nintendo
Great plugin for
Note taking.
Outlining.
Zero dependency publishing.
? Code blocks!
```javascript
document.addEventListener("click", ev => {
alert("You selected the following element: " + ev.target)
})
```
✅ Common markdown / markup syntax.
# Header 1 line
## Header 2 line
* Emphasis line
** Bold line
### Images with img
<img src="https://avatars.githubusercontent.com/u/24665" style="max-width: 200px" />
### Global and Local Links. Plain, named and pure HTML links.
http://github.com/gnat/sublime-outliner-html
? [Local named link!](/local_link) [Global named Link!](http://google.com) https://google.com <a href="https://google.com">Pure HTML link!</a>
Comments.
// I will not be in the HTML file.
Comments to insert structural metadata.
//title I will be added to <html> ▶️ <head> ▶️ <title>
옵션 A: Preferences
➡️ Package Control
➡️ Install Package
➡️ Outline to HTML
➡️ ENTER
옵션 B(직접): Preferences
➡️ Browse Packages ...
➡️ 최신 버전을 다운로드하고 추출합니다.
CTRL+SHIFT+P
➡️ Outline to HTML
Prism.js가 제공하는 코드 블록에 지원되는 언어입니다.
기본 설정을 사용하여 구성 ➡ 설정
{
// ...
"outline_to_html" : {
// "css": "", // Override CSS.
// "title": "", // Override Title (or use meta comment //title ...)
// "header": "", // Add to <head>
// "body": "", // Add to <body>
// "footer": "", // Add before </body>
}
}
View
➡️ Show Console
view.run_command('outline_to_html')