Socket
Socket
Sign inDemoInstall

atomdoc

Package Overview
Dependencies
2
Maintainers
3
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    atomdoc

A atomdoc parser


Version published
Weekly downloads
55
increased by7.84%
Maintainers
3
Install size
165 kB
Created
Weekly downloads
 

Readme

Source

AtomDoc parser

Parse atomdoc with JavaScript / CoffeeScript.

REALLY EXPERIMENTAL

Like really really experimental. Do not use for now. The doc format and output will change without warning! This project might go away altogether.

Usage

It's on npm

npm install atomdoc

It only has one method, parse, that takes no options.

AtomDoc = require 'atomdoc'

docString = """
  Public: My awesome method that does stuff.

  It does things and stuff and even more things, this is the description. The
  next section is the arguments. They can be nested. Useful for explaining the
  arguments passed to any callbacks.

  * `count` An {Int} representing count
  * `callback` A {Function} that will be called when finished
    * `options` Options {Object} passed to your callback with the options:
      * `someOption` A {Bool}
      * `anotherOption` Another {Bool}

  ## Events

  The events section can have a description if you like.

  * `contents-modified` Fired when this thing happens.
    * `options` An options hash

  ## Examples

  This is an example. It can have a description

  ```coffee
  myMethod 20, ({someOption, anotherOption}) ->
    console.log someOption, anotherOption
  `` `

  Returns a {Bool}; true when it does the thing
"""
doc = AtomDoc.parse(docString)

doc will be an object:

{
  "visibility": "Public",
  "summary": "My awesome method that does stuff.",
  "description": """
    My awesome method that does stuff.

    It does things and stuff and even more things, this is the description. The
    next section is the arguments. They can be nested. Useful for explaining the
    arguments passed to any callbacks.
  """
  "sections": [{
    "type": "arguments",
    "description": "",
    "arguments": [{
      "name": "count",
      "description": "An {Int} representing count",
      "type": "Int"
    },
    {
      "name": "callback"
      "description": "A {Function} that will be called when finished"
      "type": "Function"
      "arguments": [{
        "name": "options"
        "description": "Options {Object} passed to your callback with the options:"
        "type": "Object"
        "arguments": [{
          "name": "someOption",
          "description": "A {Bool}",
          "type": "Bool"
        },
        {
          "name": "anotherOption",
          "description": "Another {Bool}",
          "type": "Bool"
        }]
      }]
    }]
  },
  {
    "type": "events",
    "description": "The events section can have a description if you like.",
    "events": [{
      "name": "contents-modified"
      "description": "Fired when this thing happens."
      "type": null
      "arguments": [{
        "name": "options",
        "description": "An options hash",
        "type": null
      }]
    }]
  },
  {
    "type": "examples",
    "examples": [{
      "description": "This is an example. It can have a description",
      "lang": "coffee",
      "code": "myMethod 20, ({someOption, anotherOption}) ->\n  console.log someOption, anotherOption",
      "raw": "```coffee\nmyMethod 20, ({someOption, anotherOption}) ->\n  console.log someOption, anotherOption\n```"
    }]
  }],
  "returnValues": [{
    "type": "Bool",
    "description": "Returns a {Bool}; true when it does the thing"
  }]
}

The parser uses marked's lexer.

FAQs

Last updated on 27 Aug 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc