Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# export-html package for Atom

Write the file being displayed as HTML, it can be printed directly from the Atom.
Export your focused tab to HTML and print it.

The exported HTML file can also be opened in your browser if you change the "Open In" setting.



![screen-cast](https://raw.githubusercontent.com/nobuhito/atom-export-html/master/screen-cast.gif)
2 changes: 1 addition & 1 deletion menus/export-html.cson
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
'label': 'Packages'
'submenu': [
'label': 'export-html'
'label': 'Export HTML'
'submenu': [
{
'label': 'Export'
Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,26 @@
"type": "string",
"default": "github",
"tilte": "Stylesheet",
"description": "Choose from [highlight.js styles.](https://github.com/isagalaev/highlight.js/tree/master/src/styles) ."
"description": "Choose from [highlight.js styles](https://github.com/isagalaev/highlight.js/tree/master/src/styles)."
},
"lineNumber": {
"title": "Line Numbers",
"type": "object",
"properties": {
"use": {
"title": "Print Line Numbers",
"type": "boolean",
"default": true
},
"styles": {
"type": "string",
"title": "StyleSheet",
"title": "Stylesheet",
"default": "opacity: 0.5;"
}
}
},
"tabWidth": {
"title": "Tab Length",
"type": "integer",
"default": 4
}
Expand Down