Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion demos/modules/enums.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const TESTMODE = typeof window !== "undefined" && window.location && wind
export const COMPRESS = true; // TEST: `compression` write prop

// CONST
export const CUST_NAME = "S.T.A.R. Laboratories";
export const CUST_NAME = "S.T.A.R. Laboratories & co";
export const USER_NAME = "Barry Allen";
export const ARRSTRBITES = [130];
export const CHARSPERLINE = 130; // "Open Sans", 13px, 900px-colW = ~19 words/line ~130 chars/line
Expand Down
2 changes: 1 addition & 1 deletion src/gen-xml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1495,7 +1495,7 @@ export function makeXmlApp (slides: PresSlide[], company: string): string {
${slides.map((_slideObj, idx) => `<vt:lpstr>Slide ${idx + 1}</vt:lpstr>`).join('')}
</vt:vector>
</TitlesOfParts>
<Company>${company}</Company>
<Company>${encodeXmlEntities(company)}</Company>
<LinksUpToDate>false</LinksUpToDate>
<SharedDoc>false</SharedDoc>
<HyperlinksChanged>false</HyperlinksChanged>
Expand Down