Skip to content

Commit

Permalink
Merge pull request #24 from atom-ide-community/MarkdownService
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya authored Oct 5, 2020
2 parents 842a116 + 71d791d commit fc6c52c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: APM Release 🎉
uses: cycjimmy/semantic-release-action@v2
uses: cycjimmy/semantic-release-action@v2.5.0
with:
extends: |
@semantic-release/apm-config
Expand Down
1 change: 1 addition & 0 deletions types-packages/main.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export * from "./find-references"
export * from "./hyperclick"
export * from "./outline"
export * from "./sig-help"
export * from "./markdown-service"

import { BusySignalProvider } from "./busy-signal.d"
import { CodeActionProvider } from "./code-actions"
Expand Down
7 changes: 7 additions & 0 deletions types-packages/markdown-service.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/**
* the markdown service object
*/
export interface MarkdownService {
// function to render markdown for the given grammar
render(markdownText: string, grammar: string): Promise<string>
}

0 comments on commit fc6c52c

Please sign in to comment.