A lightweight Journal Article Tag Suite (JATS) for scientific literature.
The official documentation of the original JATS is here.
julia> Pkg.clone("https://github.com/paperai/LightJATS.jl.git")readjats(path::String)::LightJATS.Tree: Read JATS file and convert it to LightJATS tree.toxml(tree::LightJATS.Tree): Convert tree to xml.
using LightJATS
tree = readjats("C:/xxx.xml")
xml = toxml(tree)
open("C:/out.xml","w") do f
println(f, xml)
end