示例#1
0
        public static void Compile(this OdfDocument template)
        {
            var xml = template.ReadMainContentXml();

            // First pass, process all simple tags
            PreprocessElements(xml);

            // Second pass, process all looping table things
            ProcessTableRows(xml);

            template.WriteMainContentXml(xml);
        }
示例#2
0
 public OdsTemplate(OdfDocument templateDocument) : base(templateDocument)
 {
 }