Example #1
0
        private static void InsertPreamble(DocX doc)
        {
            doc.InsertParagraph(DateTime.Now.ToString("MM/d")).AsH1();
            doc.InsertParagraph("Hey there everyone!\r\n");
            doc.InsertParagraph("See below for the Integrations Team weekly update! Let us know if you have any questions!\r\n");
            doc.InsertParagraph("All the best, \r\nThe Integrations Team\r\n");

            doc.InsertParagraph("Week in Review").AsH2();

            doc.InsertParagraph("Integration Core").AsH3();
            doc.InsertParagraph("Highlights").AsH4();
            doc.AddBulletedList();

            doc.InsertParagraph("Lowlights").AsH4();
            doc.AddBulletedList();
            doc.InsertParagraph("What is preventing your team from doing their best work?").AsH4();

            doc.InsertParagraph("Integration Apps").AsH3();
            doc.InsertParagraph("Highlights").AsH4();
            doc.AddBulletedList();
            doc.InsertParagraph("Lowlights").AsH4();
            doc.AddBulletedList();
            doc.InsertParagraph("What is preventing your team from doing their best work?").AsH4();

            doc.InsertParagraph("Weekly Update").AsH2();
        }