atom / atomdoc

Atom's documentation parser for JavaScript / CoffeeScript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`undefined` is rendered as ``

Arcanemagus opened this issue · comments

It seems that when `undefined` is in the comment, it is rendered as ``.

Source:
image

Result:
image

Interesting, changing to just undefined makes the word disappear, so the ` aren't actually relevant. Digging deeper...

donna gives the following for the method in question:

"967": {
  "18": {
    "name": "getMarkerLayer",
    "bindingType": "prototypeProperty",
    "type": "function",
    "paramNames": [
      "id"
    ],
    "range": [
      [
        967,
        18
      ],
      [
        976,
        1
      ]
    ],
    "doc": " Public: Get a {MarkerLayer} by id.\n\n* `id` The id of the marker layer to retrieve.\n\nReturns a {MarkerLayer} or undefined if no layer exists with the given\nid. "
  }
},

So it looks like that isn't the issue.