Recently Published
Using R studio to convert latex to markdown
library(rmarkdown)
input_file <- "story of Buddha.tex"
# Run pandoc to convert LaTeX to Markdown
system(paste("pandoc", input_file, "-o", output_file))
rmarkdown::pandoc_convert("story of Buddha.tex", to="markdown", output ="story of Buddha_5.md" )