mirror of
https://github.com/atom/atom.git
synced 2026-01-23 05:48:10 -05:00
📝 Tweak markdown in Atom comments
This commit is contained in:
@@ -22,18 +22,18 @@ WindowEventHandler = require './window-event-handler'
|
||||
#
|
||||
# An instance of this class is always available as the `atom` global.
|
||||
#
|
||||
# The `atom` global also contains several useful properties that can be
|
||||
# accessed directly from this object:
|
||||
# `atom.config` - A {Config} instance
|
||||
# `atom.contextMenu` - A {ContextMenuManager} instance
|
||||
# `atom.keymap` - A {Keymap} instance
|
||||
# `atom.menu` - A {MenuManager} instance
|
||||
# `atom.rootView` - A {RootView} instance
|
||||
# `atom.packages - A {PackageManager} instance
|
||||
# `atom.pasteboard` - A {Pasteboard} instance
|
||||
# `atom.project` - A {Project} instance
|
||||
# `atom.syntax` - A {Syntax} instance
|
||||
# `atom.themes` - A {ThemeManager} instance
|
||||
# ## Useful properties available:
|
||||
#
|
||||
# * `atom.config` - A {Config} instance
|
||||
# * `atom.contextMenu` - A {ContextMenuManager} instance
|
||||
# * `atom.keymap` - A {Keymap} instance
|
||||
# * `atom.menu` - A {MenuManager} instance
|
||||
# * `atom.rootView` - A {RootView} instance
|
||||
# * `atom.packages` - A {PackageManager} instance
|
||||
# * `atom.pasteboard` - A {Pasteboard} instance
|
||||
# * `atom.project` - A {Project} instance
|
||||
# * `atom.syntax` - A {Syntax} instance
|
||||
# * `atom.themes` - A {ThemeManager} instance
|
||||
module.exports =
|
||||
class Atom
|
||||
Subscriber.includeInto(this)
|
||||
@@ -241,12 +241,12 @@ class Atom
|
||||
#
|
||||
# ## Example:
|
||||
# ```coffeescript
|
||||
# atom.confirm
|
||||
# message: 'How you feeling?'
|
||||
# detailedMessage: 'Be honest.'
|
||||
# buttons:
|
||||
# Good: -> window.alert('good to hear')
|
||||
# Bad: -> window.alert('bummer')
|
||||
# atom.confirm
|
||||
# message: 'How you feeling?'
|
||||
# detailedMessage: 'Be honest.'
|
||||
# buttons:
|
||||
# Good: -> window.alert('good to hear')
|
||||
# Bad: -> window.alert('bummer')
|
||||
# ```
|
||||
#
|
||||
# * options:
|
||||
|
||||
Reference in New Issue
Block a user