Add more LaTeX extensions
This commit is contained in:
parent
5da5b2be51
commit
73134c73b0
|
@ -1,6 +1,7 @@
|
||||||
# v0.29.23 (2016-04-20)
|
# v0.29.23 (2016-04-20)
|
||||||
- See #1607. Add support for PHP-CS-Fixer 1, along with version 2.
|
- See #1607. Add support for PHP-CS-Fixer 1, along with version 2.
|
||||||
- Closes #1179. Replace atom-beautify.general.analytics option with configuration option
|
- Closes #1179. Replace atom-beautify.general.analytics option with configuration option
|
||||||
|
- Add more LaTeX extensions
|
||||||
|
|
||||||
# v0.29.3 to v0.29.22 (2016-04-16 to 2017-04-15)
|
# v0.29.3 to v0.29.22 (2016-04-16 to 2017-04-15)
|
||||||
- Add support for additional wrap attribute options of js-beautify (html): force-aligned and force-expand-multiline.
|
- Add support for additional wrap attribute options of js-beautify (html): force-aligned and force-expand-multiline.
|
||||||
|
|
|
@ -149,7 +149,7 @@ See [all supported options in the documentation at `docs/options.md`](docs/opti
|
||||||
| JavaScript | `JavaScript` |`.js` | [`ESLint Fixer`](https://github.com/eslint/eslint), [`JS Beautify`](https://github.com/beautify-web/js-beautify) (Default), [`JSCS Fixer`](https://github.com/jscs-dev/node-jscs/), [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
| JavaScript | `JavaScript` |`.js` | [`ESLint Fixer`](https://github.com/eslint/eslint), [`JS Beautify`](https://github.com/beautify-web/js-beautify) (Default), [`JSCS Fixer`](https://github.com/jscs-dev/node-jscs/), [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
||||||
| JSON | `JSON` |`.json` | [`JS Beautify`](https://github.com/beautify-web/js-beautify) (Default), [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
| JSON | `JSON` |`.json` | [`JS Beautify`](https://github.com/beautify-web/js-beautify) (Default), [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
||||||
| JSX | `JSX`, `JavaScript (JSX)`, `Babel ES6 JavaScript`, `JavaScript with JSX` |`.jsx`, `.js` | [`JS Beautify`](https://github.com/beautify-web/js-beautify), [`Pretty Diff`](https://github.com/prettydiff/prettydiff) (Default) |
|
| JSX | `JSX`, `JavaScript (JSX)`, `Babel ES6 JavaScript`, `JavaScript with JSX` |`.jsx`, `.js` | [`JS Beautify`](https://github.com/beautify-web/js-beautify), [`Pretty Diff`](https://github.com/prettydiff/prettydiff) (Default) |
|
||||||
| LaTeX | `LaTeX` |`.tex` | [`Latex Beautify`](https://github.com/cmhughes/latexindent.pl) (Default) |
|
| LaTeX | `BibTeX`, `LaTeX`, `TeX` |`.bib`, `.tex`, `.sty`, `.cls`, `.dtx`, `.ins`, `.bbx`, `.cbx` | [`Latex Beautify`](https://github.com/cmhughes/latexindent.pl) (Default) |
|
||||||
| LESS | `LESS` |`.less` | [`CSScomb`](https://github.com/csscomb/csscomb.js), [`Pretty Diff`](https://github.com/prettydiff/prettydiff) (Default) |
|
| LESS | `LESS` |`.less` | [`CSScomb`](https://github.com/csscomb/csscomb.js), [`Pretty Diff`](https://github.com/prettydiff/prettydiff) (Default) |
|
||||||
| Lua | `Lua` |`.lua` | [`Lua beautifier`](https://www.perl.org/) (Default) |
|
| Lua | `Lua` |`.lua` | [`Lua beautifier`](https://www.perl.org/) (Default) |
|
||||||
| Markdown | `GitHub Markdown` |`.markdown`, `.md` | [`Remark`](https://github.com/wooorm/remark), [`Tidy Markdown`](https://github.com/slang800/tidy-markdown) (Default) |
|
| Markdown | `GitHub Markdown` |`.markdown`, `.md` | [`Remark`](https://github.com/wooorm/remark), [`Tidy Markdown`](https://github.com/slang800/tidy-markdown) (Default) |
|
||||||
|
|
|
@ -8,14 +8,23 @@ module.exports = {
|
||||||
Supported Grammars
|
Supported Grammars
|
||||||
###
|
###
|
||||||
grammars: [
|
grammars: [
|
||||||
|
"BibTeX"
|
||||||
"LaTeX"
|
"LaTeX"
|
||||||
|
"TeX"
|
||||||
]
|
]
|
||||||
|
|
||||||
###
|
###
|
||||||
Supported extensions
|
Supported extensions
|
||||||
###
|
###
|
||||||
extensions: [
|
extensions: [
|
||||||
|
"bib"
|
||||||
"tex"
|
"tex"
|
||||||
|
"sty"
|
||||||
|
"cls"
|
||||||
|
"dtx"
|
||||||
|
"ins"
|
||||||
|
"bbx"
|
||||||
|
"cbx"
|
||||||
]
|
]
|
||||||
|
|
||||||
defaultBeautifier: "Latex Beautify"
|
defaultBeautifier: "Latex Beautify"
|
||||||
|
|
|
@ -4193,10 +4193,19 @@
|
||||||
"Latex Beautify"
|
"Latex Beautify"
|
||||||
],
|
],
|
||||||
"grammars": [
|
"grammars": [
|
||||||
"LaTeX"
|
"BibTeX",
|
||||||
|
"LaTeX",
|
||||||
|
"TeX"
|
||||||
],
|
],
|
||||||
"extensions": [
|
"extensions": [
|
||||||
"tex"
|
"bib",
|
||||||
|
"tex",
|
||||||
|
"sty",
|
||||||
|
"cls",
|
||||||
|
"dtx",
|
||||||
|
"ins",
|
||||||
|
"bbx",
|
||||||
|
"cbx"
|
||||||
],
|
],
|
||||||
"properties": {
|
"properties": {
|
||||||
"indent_char": {
|
"indent_char": {
|
||||||
|
|
Loading…
Reference in New Issue