doclet.js 418 B

123456789101112131415161718192021222324
  1. /**
  2. Markdown asterisks in a doclet that does not use leading asterisks.
  3. **Strong** is strong.
  4. * List item 1.
  5. * List item 2.
  6. @param {string} thingy - The thingy.
  7. */
  8. function test1(thingy) {
  9. }
  10. /**
  11. * Markdown asterisks in a doclet that uses leading asterisks.
  12. * **Strong** is strong.
  13. *
  14. * * List item 1.
  15. * * List item 2.
  16. * @param {string} thingy - The thingy.
  17. */
  18. function test2(thingy) {
  19. }