Skip to content

Commit

Permalink
🐛 Fix TOC visible text and GitHub slug generation (#890)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lemmingh authored Feb 1, 2021
1 parent 661bbf9 commit 51ed4fb
Show file tree
Hide file tree
Showing 8 changed files with 342 additions and 159 deletions.
24 changes: 15 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,7 @@
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/katex": "^0.11.0",
"@types/markdown-it": "^12.0.1",
"@types/mocha": "^8.2.0",
"@types/node": "~12.12.70",
Expand All @@ -467,7 +468,7 @@
"ts-loader": "^8.0.14",
"typescript": "~4.1.0",
"vscode-test": "^1.5.0",
"webpack": "^5.18.0",
"webpack": "^5.19.0",
"webpack-cli": "^4.4.0"
}
}
14 changes: 14 additions & 0 deletions src/IDisposable.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
"use strict";

/**
* @see <https://code.visualstudio.com/api/references/vscode-api#Disposable>
* @see <https://github.com/dotnet/runtime/blob/master/src/libraries/System.Private.CoreLib/src/System/IDisposable.cs>
* @see <https://referencesource.microsoft.com/#mscorlib/system/idisposable.cs>
*/
export default interface IDisposable {

/**
* Performs application-defined tasks associated with freeing, releasing, or resetting resources.
*/
dispose(): any;
}
Loading

0 comments on commit 51ed4fb

Please sign in to comment.