Skip to content

Commit fc6c52c

Browse files
authored
Merge pull request #24 from atom-ide-community/MarkdownService
2 parents 842a116 + 71d791d commit fc6c52c

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8181
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
8282
- name: APM Release 🎉
83-
uses: cycjimmy/semantic-release-action@v2
83+
uses: cycjimmy/semantic-release-action@v2.5.0
8484
with:
8585
extends: |
8686
@semantic-release/apm-config

types-packages/main.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export * from "./find-references"
1010
export * from "./hyperclick"
1111
export * from "./outline"
1212
export * from "./sig-help"
13+
export * from "./markdown-service"
1314

1415
import { BusySignalProvider } from "./busy-signal.d"
1516
import { CodeActionProvider } from "./code-actions"
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* the markdown service object
3+
*/
4+
export interface MarkdownService {
5+
// function to render markdown for the given grammar
6+
render(markdownText: string, grammar: string): Promise<string>
7+
}

0 commit comments

Comments
 (0)