mdutils.fileutils package¶
Submodules¶
mdutils.fileutils.fileutils module¶
-
class
mdutils.fileutils.fileutils.
MarkDownFile
(name='')[source]¶ Bases:
object
MarkDownFile class creates a new file of MarkDown extension.
Features available are: - Create a file. - Rewrite a file with new data. - Write at the end of the file.
-
append_after_second_line
(data)[source]¶ Write after the file’s first line.
Parameters: data – is a string containing all the data that is written in the markdown file.
-
append_end
(data)[source]¶ Write at the last position of a Markdown file.
Parameters: data – is a string containing all the data that is written in the markdown file.
-