@quarto/jupyterlab-quarto 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -147,6 +147,7 @@ function renderFrontMatter(tokens, idx) {
147
147
  }
148
148
  };
149
149
  // Read simple values
150
+ const eatKeys = ['title', 'subtitle', 'abstract', 'date', 'date-modified', 'doi', 'author', 'authors'];
150
151
  titleBlock.title = readStr('title');
151
152
  titleBlock.subtitle = readStr('subtitle');
152
153
  titleBlock.abstract = readStr('abstract');
@@ -166,9 +167,27 @@ function renderFrontMatter(tokens, idx) {
166
167
  // decorator
167
168
  const decor = decorator(['Options']);
168
169
  titleLines.push(decor);
169
- // yaml
170
- const yamlDump = yaml.dump(frontMatter);
171
- const otherYamlRendered = `<pre class="quarto-frontmatter-container"><code class="cm-s-jupyter language-yaml quarto-frontmatter">${yamlDump}</code></pre>`;
170
+ // Left over YAML
171
+ // Use the raw YAML string so we don't end up mutating / round tripping the YAML
172
+ let eating = false;
173
+ const outputYaml = [];
174
+ const yamlNoDelimiters = token.markup.replace(/---\s*$/, '').replace(/^---\s*/, '');
175
+ for (const line of yamlNoDelimiters.split("\n")) {
176
+ const eatKey = eatKeys.some((k) => {
177
+ const match = line.match(RegExp(`^${k}\\s*:`));
178
+ return match !== null;
179
+ });
180
+ if (eatKey) {
181
+ eating = true;
182
+ }
183
+ else {
184
+ if (!eating || line.match(/^\S/)) {
185
+ eating = false;
186
+ outputYaml.push(line);
187
+ }
188
+ }
189
+ }
190
+ const otherYamlRendered = `<pre class="quarto-frontmatter-container"><code class="cm-s-jupyter language-yaml quarto-frontmatter">${outputYaml.join("\n")}</code></pre>`;
172
191
  titleLines.push(otherYamlRendered);
173
192
  }
174
193
  return titleLines.join('\n');
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.2.7",
2
+ "version": "0.2.8",
3
3
  "name": "@quarto/jupyterlab-quarto",
4
4
  "description": "Jupyter extension to enable authoring of Quarto documents within Jupyterlab Notebooks.",
5
5
  "keywords": [