예제 #1
0
        public string PageBody()
        {
            Paragraph nextParagraph;

            nextParagraph = new Paragraph (myChapter.MyNovel);
            return nextParagraph.ToString ();
        }
예제 #2
0
        public string PageBreak()
        {
            Sentence nextSentence;
            Paragraph nextParagraph;
            string text = "";

            nextSentence = new Sentence (myChapter.MyNovel);
            nextParagraph = new Paragraph (myChapter.MyNovel);
            text = ("\n*page_break");
            if (nextSentence.WordCount <= 5) {
                text = (text + " " + nextSentence);
            }
            text = (text + "\n\n" + nextParagraph.ToString());
            return text;
        }