diff --git a/news/changelog-1.7.md b/news/changelog-1.7.md index 5150e648ee5..7482eeb7e04 100644 --- a/news/changelog-1.7.md +++ b/news/changelog-1.7.md @@ -43,6 +43,8 @@ All changes included in 1.7: ## `html` format +- ([#11860])(https://github.com/quarto-dev/quarto-cli/issues/11860)): ES6 modules that import other local JS modules in documents with `embed-resources: true` are now correctly embedded. +- ([#10780])(https://github.com/quarto-dev/quarto-cli/issues/10780)): improve `link-external-filter` documentation/example to be more clear and correct. - ([#11860](https://github.com/quarto-dev/quarto-cli/issues/11860)): ES6 modules that import other local JS modules in documents with `embed-resources: true` are now correctly embedded. ## `pdf` format diff --git a/src/resources/editor/tools/vs-code.mjs b/src/resources/editor/tools/vs-code.mjs index f16c739e7a7..789c828dc00 100644 --- a/src/resources/editor/tools/vs-code.mjs +++ b/src/resources/editor/tools/vs-code.mjs @@ -16059,7 +16059,7 @@ var require_yaml_intelligence_resources = __commonJS({ schema: "string", description: { short: "A regular expression that can be used to determine whether a link is an internal link.", - long: "A regular expression that can be used to determine whether a link is an internal link. For example, \nthe following will treat links that start with http://www.quarto.org as internal links (and others\nwill be considered external):\n\n```\n^(?:http:|https:)\\/\\/www\\.quarto\\.org\\/custom\n```\n" + long: "A regular expression that can be used to determine whether a link is an internal link. For example, \nthe following will treat links that start with `http://www.quarto.org/custom` or `https://www.quarto.org/custom`\nas internal links (and others will be considered external):\n\n```\n^(?:http:|https:)\\/\\/www\\.quarto\\.org\\/custom\n```\n" } }, { diff --git a/src/resources/editor/tools/yaml/web-worker.js b/src/resources/editor/tools/yaml/web-worker.js index 66a0100644f..833fd14d74c 100644 --- a/src/resources/editor/tools/yaml/web-worker.js +++ b/src/resources/editor/tools/yaml/web-worker.js @@ -16060,7 +16060,7 @@ try { schema: "string", description: { short: "A regular expression that can be used to determine whether a link is an internal link.", - long: "A regular expression that can be used to determine whether a link is an internal link. For example, \nthe following will treat links that start with http://www.quarto.org as internal links (and others\nwill be considered external):\n\n```\n^(?:http:|https:)\\/\\/www\\.quarto\\.org\\/custom\n```\n" + long: "A regular expression that can be used to determine whether a link is an internal link. For example, \nthe following will treat links that start with `http://www.quarto.org/custom` or `https://www.quarto.org/custom`\nas internal links (and others will be considered external):\n\n```\n^(?:http:|https:)\\/\\/www\\.quarto\\.org\\/custom\n```\n" } }, { diff --git a/src/resources/editor/tools/yaml/yaml-intelligence-resources.json b/src/resources/editor/tools/yaml/yaml-intelligence-resources.json index 11528adcab4..babe66ba587 100644 --- a/src/resources/editor/tools/yaml/yaml-intelligence-resources.json +++ b/src/resources/editor/tools/yaml/yaml-intelligence-resources.json @@ -9031,7 +9031,7 @@ "schema": "string", "description": { "short": "A regular expression that can be used to determine whether a link is an internal link.", - "long": "A regular expression that can be used to determine whether a link is an internal link. For example, \nthe following will treat links that start with http://www.quarto.org as internal links (and others\nwill be considered external):\n\n```\n^(?:http:|https:)\\/\\/www\\.quarto\\.org\\/custom\n```\n" + "long": "A regular expression that can be used to determine whether a link is an internal link. For example, \nthe following will treat links that start with `http://www.quarto.org/custom` or `https://www.quarto.org/custom`\nas internal links (and others will be considered external):\n\n```\n^(?:http:|https:)\\/\\/www\\.quarto\\.org\\/custom\n```\n" } }, { diff --git a/src/resources/schema/document-links.yml b/src/resources/schema/document-links.yml index 4ba840b1253..a5cb3d42dc8 100644 --- a/src/resources/schema/document-links.yml +++ b/src/resources/schema/document-links.yml @@ -18,8 +18,8 @@ short: "A regular expression that can be used to determine whether a link is an internal link." long: | A regular expression that can be used to determine whether a link is an internal link. For example, - the following will treat links that start with http://www.quarto.org as internal links (and others - will be considered external): + the following will treat links that start with `http://www.quarto.org/custom` or `https://www.quarto.org/custom` + as internal links (and others will be considered external): ``` ^(?:http:|https:)\/\/www\.quarto\.org\/custom