Skip to content

Commit 8d9282a

Browse files
committed
Fixes and move jsdoc to cli
1 parent 9f568b6 commit 8d9282a

26 files changed

+3970
-15
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/**
2+
JSDoc Function Highlighting
3+
*/
4+
.jsdoc-object {
5+
background-color: var(--vp-c-bg-soft);
6+
padding: 15px;
7+
}
8+
9+
.jsdoc-object .type-signature {
10+
color: var(--vp-c-brand-2);
11+
}
12+
13+
.jsdoc-object .signature {
14+
color: var(--vp-c-brand-1);
15+
}
16+
17+
.jsdoc-object .signature .signature-attributes {
18+
font-size: 11px;
19+
}
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
## Modified by SAP
2+
* Output Markdown instead of HTML (Modified all templates)
3+
* Removed navbar functionality from publish.js
4+
* Removed static files functionality from publish.js
5+
* Modified js links to link to GitHub
6+
* Modified internal linking
7+
8+
## Version 2.0.2
9+
* [feature] added noURLEncode option to not url encode links in the menu for unicode texts
10+
## Version 2.0.1
11+
* [fix] Removed old backwards compatability fix to fix in page linking
12+
13+
## Version 2.0.0
14+
* [feature] BREAKING: updated the system to work with JSdoc 4.x https://github.com/clenemt/docdash/pull/110
15+
* [feature] Added custom classes to h5 headers for customization
16+
* [feature] Added Global into section order
17+
* [feature] Added possibility to exclude package scope/name and version from output path https://github.com/clenemt/docdash/pull/78
18+
* [feature] Added type signature specific classes for CSS customization
19+
* [feature] Adjusted layout for namespace https://github.com/clenemt/docdash/pull/86
20+
* [feature] Common Navigation HTML generated https://github.com/clenemt/docdash/pull/95
21+
* [feature] Collapsible top level menu
22+
* [feature] Shorten types https://github.com/clenemt/docdash/pull/104
23+
* [feature] Update CSS for pre https://github.com/clenemt/docdash/pull/103
24+
* [fix] Added double quotes to README for consistency https://github.com/clenemt/docdash/pull/96
25+
* [fix] Fixed extra scroll bar on large code blocks https://github.com/clenemt/docdash/pull/99
26+
* [fix] Fixed regular expression in README.md https://github.com/clenemt/docdash/pull/81
27+
28+
## Version 1.2.0
29+
30+
* [feature] host fonts locally https://github.com/clenemt/docdash/pull/63
31+
* [feature] separate styles for headers inside user markdown https://github.com/clenemt/docdash/pull/64
32+
* [feature] hide static/private method depending of the config https://github.com/clenemt/docdash/pull/72
33+
* [fix] fix empty source code lines in some browsers
34+
* [fix] improved viewing theme on smaller screens https://github.com/clenemt/docdash/pull/62
35+
36+
## Version 1.1.1
37+
38+
* [feature] scroll to currently opened method on page load https://github.com/clenemt/docdash/pull/60
39+
* [fix] fixed searching in IE11
40+
* [fix] hiding/showing find exact match to open only single relevant section
41+
42+
## Version 1.1.0
43+
44+
* [scripts] remove jQuery as dependency https://github.com/clenemt/docdash/pull/54
45+
* [feature] allow aliasing event names https://github.com/clenemt/docdash/pull/59
46+
47+
## Version 1.0.3
48+
49+
* [style] break headers into multiple lines
50+
* [style] break links in descriptions into multiple lines
51+
* [fix] fix ancestor check when there are none, like including tutorials
52+
* [fix] remove unnecessary files from published package
53+
* [fix] stop crashing on incorrect params JSDoc comments
54+
* [feature] add displaying version from package.json when it is provided
55+
* [feature] add support for yield
56+
* [feature] add support for namepsaces that are functions
57+
* [feature] add support for interfaces
58+
* [feature] add support for modifies
59+
60+
## Version 1.0.2
61+
62+
* [styles] increase space between custom menu items
63+
* [option] Added `wrap` option to wrap long names instead of trimming them
64+
* [option] Added `navLevel` option to control depth level to show in navbar, starting at 0
65+
* [option] Added `private` option to show/hide @private in navbar
66+
67+
## Version 1.0.1
68+
69+
* Allow adding custom menu items
70+
* Remove line-height: 160%
71+
72+
## Version 1.0.0
73+
74+
* Add option to add disqus comments to each page
75+
* Add option to filter through navigation items
76+
* Add option to have menus collapsed by default and only open the one for the current page
77+
* Add option to provide custom site title
78+
* Add option to provide meta information for the website
79+
* Add option to provide opengraph information for the website
80+
* Add viewport meta data
81+
* Added global table styles
82+
* Added support for @hidecontainer (jsdoc 3.5.0)
83+
* Added support for useLongnameInNav
84+
* Allow including typedefs in the menu
85+
* Allow inclusion of custom CSS
86+
* Allow injecting external or local copied scripts into HTML
87+
* Allow removing single and double quotes from pathnames
88+
* Fix crash when @example is empty or undefined
89+
* Fix issue with node 8.5
90+
* Fixing copyFile problem on some systems or nodejs versions
91+
* Removes arbitrary width property
92+
* Support ordering of the main navbar sections

0 commit comments

Comments
 (0)