This repository was archived by the owner on Mar 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17.3k
Cleanup docs #1451
Merged
Merged
Cleanup docs #1451
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
8b4b4a6
:memo: Indent comment correctly
kevinsawicki c5349f5
Wrap code example in backticks
kevinsawicki 7432d39
Upgrade to text-buffer@0.16.0
kevinsawicki b4a9409
Add custom README.md for generated docs
kevinsawicki 45fe04f
:memo: Add require example
kevinsawicki 3a02f4d
:memo: Remove delegate warnings
kevinsawicki 31b68c0
Include space-pen docs
kevinsawicki 07c7f1e
Add theorist to generated docs
kevinsawicki 1603fab
Download includes when building docs
kevinsawicki 5d8ac56
Remove unused temp directory
kevinsawicki e3f32ab
Wrap Array in curlies
kevinsawicki 26e21e9
:memo: Mention atom.project global
kevinsawicki 025d2be
:memo: Triggered instead of trigged
kevinsawicki e6a9812
Link to creating a package doc
kevinsawicki c9e498f
:memo: Use correct folder name
kevinsawicki a03ba29
Use consistent coffeescript fence name
kevinsawicki File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -9,5 +9,6 @@ debug.log | |
| /tags | ||
| /atom-shell/ | ||
| docs/output | ||
| docs/includes | ||
| spec/fixtures/evil-files/ | ||
| /apm | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| # Welcome to the Atom API Documentation | ||
|
|
||
|  | ||
|
|
||
| ## FAQ | ||
|
|
||
| ### Where do I start? | ||
|
|
||
| Check out [EditorView][EditorView] and [Editor][Editor] classes for a good | ||
| overview of the main editor API. | ||
|
|
||
| ### How do I access these classes? | ||
|
|
||
| Check out the [Atom][Atom] class docs to see what globals are available and | ||
| what they provide. | ||
|
|
||
| You can also require many of these classes in your packages via: | ||
|
|
||
| ```coffee | ||
| {EditorView} = require 'atom' | ||
| ``` | ||
|
|
||
| ### How do I create a package? | ||
|
|
||
| You probably want to read the [creating a package][creating-a-package] | ||
| doc first and come back here when you are done. | ||
|
|
||
| [Atom]: ../classes/Atom.html | ||
| [Editor]: ../classes/Editor.html | ||
| [EditorView]: ../classes/EditorView.html | ||
| [creating-a-package]: https://www.atom.io/docs/latest/creating-a-package | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will be the new doc that displays when visiting here instead of the root
README.md.