Skip to content

Commit

Permalink
~ ignoring more markdown syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
joethei committed Dec 8, 2021
1 parent 18d5547 commit 29972a9
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 13 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,3 @@ jobs:
asset_path: ./manifest.json
asset_name: manifest.json
asset_content_type: application/json
- name: Upload styles.css
id: upload-styles
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./styles.css
asset_name: styles.css
asset_content_type: text/css
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "obsidian-tts",
"name": "Text to Speech",
"version": "0.3.3",
"version": "0.3.4",
"minAppVersion": "0.12.0",
"description": "Text to speech for Obsidian. Hear your notes.",
"author": "Johannes Theiner",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-tts",
"version": "0.3.3",
"version": "0.3.4",
"description": "Text to speech for Obsidian. Hear your notes.",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 2 additions & 0 deletions src/TTSService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ export class TTSService {
content = content.replace(/-/g, "");
content = content.replace(/_/g, "");
content = content.replace(/\*/g, "");
content = content.replace(/\^/g, "");
content = content.replace(/==/g, "");
}
if (!this.plugin.settings.speakLinks) {
//regex from https://stackoverflow.com/a/37462442/5589264
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"0.1.0": "0.9.12",
"0.2.0": "0.9.12",
"0.3.2": "0.12.0",
"0.3.3": "0.12.0"
"0.3.3": "0.12.0",
"0.3.4": "0.12.0"
}

0 comments on commit 29972a9

Please sign in to comment.