pi-studio 0.5.26 → 0.5.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -0
- package/index.ts +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ All notable changes to `pi-studio` are documented here.
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.5.27] — 2026-03-21
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- Markdown preview/PDF parsing now also allows ATX headings without a preceding blank line, so patterns like `Paragraph` followed immediately by `# Heading` on the next line are treated as headings rather than plain paragraph text.
|
|
11
|
+
|
|
7
12
|
## [0.5.26] — 2026-03-21
|
|
8
13
|
|
|
9
14
|
### Added
|
package/index.ts
CHANGED
|
@@ -2802,7 +2802,7 @@ async function renderStudioMarkdownWithPandoc(markdown: string, isLatex?: boolea
|
|
|
2802
2802
|
const sourceWithResolvedRefs = isLatex
|
|
2803
2803
|
? preprocessStudioLatexReferences(latexAlgorithmPreviewTransform.markdown, sourcePath, resourcePath)
|
|
2804
2804
|
: markdown;
|
|
2805
|
-
const inputFormat = isLatex ? "latex" : "markdown+lists_without_preceding_blankline-blank_before_blockquote+tex_math_dollars+tex_math_single_backslash+tex_math_double_backslash+autolink_bare_uris-raw_html";
|
|
2805
|
+
const inputFormat = isLatex ? "latex" : "markdown+lists_without_preceding_blankline-blank_before_blockquote-blank_before_header+tex_math_dollars+tex_math_single_backslash+tex_math_double_backslash+autolink_bare_uris-raw_html";
|
|
2806
2806
|
const bibliographyArgs = buildStudioPandocBibliographyArgs(markdown, isLatex, resourcePath);
|
|
2807
2807
|
const args = ["-f", inputFormat, "-t", "html5", "--mathml", "--wrap=none", ...bibliographyArgs];
|
|
2808
2808
|
if (resourcePath) {
|
|
@@ -3208,7 +3208,7 @@ async function renderStudioPdfWithPandoc(
|
|
|
3208
3208
|
}
|
|
3209
3209
|
|
|
3210
3210
|
if (!isLatex && effectiveEditorLanguage === "diff") {
|
|
3211
|
-
const inputFormat = "markdown+lists_without_preceding_blankline-blank_before_blockquote+tex_math_dollars+autolink_bare_uris+superscript+subscript-raw_html";
|
|
3211
|
+
const inputFormat = "markdown+lists_without_preceding_blankline-blank_before_blockquote-blank_before_header+tex_math_dollars+autolink_bare_uris+superscript+subscript-raw_html";
|
|
3212
3212
|
const diffMarkdown = prepareStudioPdfMarkdown(markdown, false, effectiveEditorLanguage);
|
|
3213
3213
|
try {
|
|
3214
3214
|
return await runPandocPdfExport(inputFormat, diffMarkdown);
|
|
@@ -3224,7 +3224,7 @@ async function renderStudioPdfWithPandoc(
|
|
|
3224
3224
|
|
|
3225
3225
|
const inputFormat = isLatex
|
|
3226
3226
|
? "latex"
|
|
3227
|
-
: "markdown+lists_without_preceding_blankline-blank_before_blockquote+tex_math_dollars+tex_math_single_backslash+tex_math_double_backslash+autolink_bare_uris+superscript+subscript-raw_html";
|
|
3227
|
+
: "markdown+lists_without_preceding_blankline-blank_before_blockquote-blank_before_header+tex_math_dollars+tex_math_single_backslash+tex_math_double_backslash+autolink_bare_uris+superscript+subscript-raw_html";
|
|
3228
3228
|
const normalizedMarkdown = prepareStudioPdfMarkdown(sourceWithResolvedRefs, isLatex, effectiveEditorLanguage);
|
|
3229
3229
|
|
|
3230
3230
|
const tempDir = join(tmpdir(), `pi-studio-pdf-${Date.now()}-${randomUUID()}`);
|