gjtorikian / biscotto

UNMAINTAINED. CoffeeScript API documentation tool that uses TomDoc notation.
https://gjtorikian.github.io/biscotto/
MIT License
105 stars 18 forks source link

Examples aren't being parsed/generated correctly? #37

Closed patreeceeo closed 10 years ago

patreeceeo commented 10 years ago

Hi there,

This is what I did:

  # Set the value of one or multiple fields in the modeled
  # document.
  #
  # {::set} can be called two ways: one-off and 
  # bulk.
  #
  #
  # Examples
  #
  #   model.set('flavor', 'turkish');
  #   model.set({flavor: 'turkish', price: 4});
  #
  #
  # Returns true if changes were propagated to the database

(https://github.com/pzatrick/meteor-questions/blob/master/packages/reactive-model/lib/reactive_model.coffee#L50-L53)

This is what I got:

image

I expected to see the examples displayed as pretty-printed code, or to at least be displayed. Am I doing something wrong?

Thanks, Patrick