We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 234d013 commit 421e4f9Copy full SHA for 421e4f9
apps/vscode/CHANGELOG.md
@@ -1,5 +1,9 @@
1
# Changelog
2
3
+## 1.94.0 (Unreleased)
4
+
5
+- Correctly handle preview URLs with spaces within website/book projects
6
7
## 1.93.0 (Release on 14 August 2023)
8
9
- Visual editor: Ensure that raw inline html without tags uses explicit inline syntax
apps/vscode/src/providers/preview/preview.ts
@@ -516,7 +516,7 @@ class PreviewManager {
516
// capture preview command url and preview url
517
this.previewCommandUrl_ = match[1];
518
const browseMatch = this.previewOutput_.match(
519
- /(Browse at|Listening on) (https?:\/\/[^\s]*)/
+ /(Browse at|Listening on) (https?:\/\/[^\n]*)/
520
);
521
if (browseMatch) {
522
// shiny document
0 commit comments