std::string README_md()

in include/poac/util/ftemplate.hpp [33:63]


    std::string README_md(const std::string& project_name) {
        return "# " + project_name + "\n"
               "**TODO: Add description**\n"
               "\n"
               "---\n"
               "This project uses [poac](https://github.com/poacpm/poac).\n"
               "\n"
               "For more information on poac please see below:\n"
               "* https://poac.io\n"
               "* https://github.com/poacpm\n"
               "* https://github.com/poacpm/poac#readme\n"
               "\n"
               "## Build\n"
               "\n"
               "```bash\n"
               "$ poac build # or run\n"
               "```\n"
               "\n"
               "## Installation\n"
               "\n"
               "To install `" + project_name + "`, add it to the dependency list of `poac.yml`:\n"
               "\n"
               "```yaml\n"
               "deps:\n"
               "  " + project_name + ": \"0.1.0\"\n"
               "```\n"
               "\n"
               "Execute the following command:\n"
               "`poac install`\n"
               ;
    }