mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-08-21 04:12:56 +00:00
Make PandocExecutableName public
This commit is contained in:
parent
cd3e402295
commit
bb2db5585a
@ -91,7 +91,7 @@
|
|||||||
</MudListItem>
|
</MudListItem>
|
||||||
|
|
||||||
<MudListItem T="string" Class="mb-2">
|
<MudListItem T="string" Class="mb-2">
|
||||||
Open the folder and copy the full path to the <CodeBlock IsInline="@true">pandoc.exe</CodeBlock> file into your
|
Open the folder and copy the full path to the <CodeBlock IsInline="true">@PandocProcessBuilder.PandocExecutableName</CodeBlock> file into your
|
||||||
clipboard.
|
clipboard.
|
||||||
<CodeTabs>
|
<CodeTabs>
|
||||||
<CodeBlock Title="Windows">C:\Users\%USERNAME%\pandoc\pandoc-@(PANDOC_VERSION)</CodeBlock>
|
<CodeBlock Title="Windows">C:\Users\%USERNAME%\pandoc\pandoc-@(PANDOC_VERSION)</CodeBlock>
|
||||||
|
@ -131,5 +131,5 @@ public sealed class PandocProcessBuilder
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Reads the os platform to determine the used executable name.
|
/// Reads the os platform to determine the used executable name.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private static string PandocExecutableName => CPU_ARCHITECTURE is RID.WIN_ARM64 or RID.WIN_X64 ? "pandoc.exe" : "pandoc";
|
public static string PandocExecutableName => CPU_ARCHITECTURE is RID.WIN_ARM64 or RID.WIN_X64 ? "pandoc.exe" : "pandoc";
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user