markdown.js 654 B

12345678910111213141516171819202122232425262728293031
  1. 'use strict';
  2. /**
  3. * @see [Nowhere](http://nowhere.com)
  4. */
  5. function foo() {}
  6. /**
  7. * @see AnObject#myProperty
  8. */
  9. function bar() {}
  10. /**
  11. * @author [Mr. Macintosh](http://www.folklore.org/StoryView.py?story=Mister_Macintosh.txt)
  12. * @classdesc My class.
  13. * @description My class.
  14. * @exception {Error} Some error.
  15. * @param {string} myParam - My parameter.
  16. * @property {string} value - Value of myParam.
  17. * @return {MyClass} Class instance.
  18. * @see [Example Inc.](http://example.com)
  19. * @summary My class.
  20. */
  21. function MyClass(myParam) {
  22. this.value = myParam;
  23. }
  24. /**
  25. * "See" {@link chat."#channel"."say-\"hello\""}.
  26. */
  27. function MyOtherClass() {}