This repository was archived by the owner on Jun 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.82 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "plain-simple",
"version": "1.1.0",
"description": "Simple text highlighting for text/plain files.",
"keywords": [
"text",
"plain",
"syntax",
"highlight"
],
"repository": {
"type": "git",
"url": "https://github.com/Reyhn3/atom-plain-simple"
},
"homepage": "https://github.com/Reyhn3/atom-plain-simple",
"license": "CC BY-SA 4.0",
"engines": {
"atom": ">= 1.13.0",
"node": "*"
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/Reyhn3/atom-plain-simple/issues"
},
"readme": "# Simple highlighting of text/plain files\n\nAdds highlighting to plain text files in [Atom](https://atom.io/) to improve the visual structure of the document.\n\n\n\nContributions, bug reports and feature requests are very welcome!\n\n _- Reyhn_\n\n\n\n\n## Note on auto grammar\n\nThis package should be automatically applied to .txt-files.\nHowever, other packages might also use that file extension.\n\nIf this highlighting is not applied, check your other grammar packages for their file types.\nYou might be required to modify their grammar .cson-files and comment out the txt-extension.\n\nFor example, change this:\n```\n'fileTypes': [\n 'txt'\n 'log'\n 'syslog'\n 'out'\n 'output'\n]\n```\ninto:\n```\n'fileTypes': [\n# 'txt'\n 'log'\n 'syslog'\n 'out'\n 'output'\n]\n```\n\n\n\n\n##### Legal\n\nThe package icon is made by [Alessandro Roncone](https://github.com/alecive), available under a [CC Attribution-Share Alike 4.0](http://creativecommons.org/licenses/by-sa/4.0/) license.\n\nThis package is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-sa/4.0/).\n"
}