MarkdownImpExp.BulletedMarkdownContainer.ToMarkdown C# (CSharp) Метод

ToMarkdown() публичный Метод

public ToMarkdown ( ) : string
Результат string
        public override string ToMarkdown()
        {
            return ToMarkdown(-1);
        }

Same methods

BulletedMarkdownContainer::ToMarkdown ( int indent ) : string

Usage Example

Пример #1
0
        public bool Export(TaskList srcTasks, string sDestFilePath, bool bSilent, Preferences prefs, string sKey)
        {
            UInt32 taskCount = srcTasks.GetTaskCount();

            BulletedMarkdownContainer mdTasks = new BulletedMarkdownContainer();

            Task task = srcTasks.GetFirstTask();

            while (task.IsValid())
            {
                ExportTask(task, mdTasks, true);

                task = task.GetNextTask();
            }

            Debug.Write(mdTasks.ToMarkdown());
            System.IO.File.WriteAllText(sDestFilePath, mdTasks.ToMarkdown());

            return(true);
        }
All Usage Examples Of MarkdownImpExp.BulletedMarkdownContainer::ToMarkdown
BulletedMarkdownContainer