| Name | Size | Mode | Actions |
|---|---|---|---|
| commentConvert.js | 725 | 0644 | editdlrm |
| escapeHtml.js | 769 | 0644 | editdlrm |
| markdown.js | 2243 | 0644 | editdlrm |
| overloadHelper.js | 3921 | 0644 | editdlrm |
| railsTemplate.js | 718 | 0644 | editdlrm |
| shout.js | 726 | 0644 | editdlrm |
| sourcetag.js | 793 | 0644 | editdlrm |
| summarize.js | 3898 | 0644 | editdlrm |
| underscore.js | 1310 | 0644 | editdlrm |
/var/www/greso.tech/server/nsm/node_modules/jsdoc/plugins/test/specs/markdown.js (2243B)
tag expect( /^
(?:.+)<\/p>$/.test(value) ).toBe(true); }); }); it('should unescape " entities in inline tags, but not elsewhere', function() { var myOtherClass = docSet.getByLongname('MyOtherClass')[0]; plugin.handlers.newDoclet({ doclet: myOtherClass }); expect(myOtherClass.description).toContain('chat."#channel"."say-\\"hello\\""'); expect(myOtherClass.description).toContain('"See"'); }); describe('@see tag support', function() { var foo = docSet.getByLongname('foo')[0]; var bar = docSet.getByLongname('bar')[0]; it('should parse @see tags containing links', function() { plugin.handlers.newDoclet({ doclet: foo }); expect(typeof foo).toEqual('object'); expect(foo.see[0]).toEqual('
'); }); it('should not parse @see tags that do not contain links', function() { plugin.handlers.newDoclet({ doclet: bar }); expect(typeof bar).toEqual('object'); expect(bar.see[0]).toEqual('AnObject#myProperty'); }); }); });