From 8e1107356f327afc1d4cadcc071fac166dd61ae4 Mon Sep 17 00:00:00 2001 From: Arnaud de Bossoreille Date: Mon, 7 Aug 2017 16:04:59 +0200 Subject: [PATCH] Allow quotePrefix option in styles. --- xlsx.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/xlsx.js b/xlsx.js index 6bca3c673..dd89956be 100644 --- a/xlsx.js +++ b/xlsx.js @@ -12359,6 +12359,10 @@ var XmlNode = (function () { .attr("borderId", borderId) .attr("xfId", "0"); + if (attributes.quotePrefix > 0) { + $xf.attr("quotePrefix", "1"); + } + if (fontId > 0) { $xf.attr('applyFont', "1"); }