# xml-fortran **Repository Path**: zoziha/xml-fortran ## Basic Information - **Project Name**: xml-fortran - **Description**: 🍸`xml-fortran`: A collection of commonly used functions for XML-files for Fortran. - **Primary Language**: FORTRAN - **License**: BSD-3-Clause - **Default Branch**: main - **Homepage**: https://xml-fortran-api.netlify.app/ - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 1 - **Created**: 2022-03-07 - **Last Updated**: 2022-11-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: Fortran, fpm, XML ## README # XML 解析 [![Netlify Status](https://api.netlify.com/api/v1/badges/1b5ef517-2d9b-4a11-a13c-ad69ad98eb45/deploy-status)](https://app.netlify.com/sites/xml-fortran-api/deploys) Fortran 的 XML 数据文件处理包。 **欢迎建议与代码贡献!** ```fortran use xmlparse, only: xml_parse ,xml_open, xml_close, xml_put, xml_get ``` ## 使用 [fortran-lang/fpm](https://github.com/fortran-lang/fpm) 构建 ```sh fpm run --example --all # demo_menu is unavailable now. fpm build --profile release ``` 通过 fpm,可以直接引用 xml-fortran 包: ```toml [dependencies] xml-fortran = { git = "https://gitee.com/zoziha/xml-fortran.git" } ``` ## API 文档 ```sh ford FORD-project-file.md ``` 最新的 API 文档,请访问 [xml-fortran-api](https://xml-fortran-api.netlify.app/)。 ## References - [Arjen Markus/xml-fortran](https://sourceforge.net/projects/xml-fortran/) - [W3School-XML教程](https://www.w3school.com.cn/xml/index.asp) - [菜鸟教程-XML教程](https://www.runoob.com/xml/xml-tutorial.html)