{"id":18854014,"url":"https://github.com/ngdream/h5assembler","last_synced_at":"2025-04-14T10:33:08.684Z","repository":{"id":50273662,"uuid":"516191509","full_name":"ngdream/H5assembler","owner":"ngdream","description":" code satic html pages without repeating yourself","archived":false,"fork":false,"pushed_at":"2023-01-10T22:37:07.000Z","size":481,"stargazers_count":15,"open_issues_count":2,"forks_count":6,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-03-27T23:41:52.369Z","etag":null,"topics":["assembler","bison","contributions-welcome","cplusplus","file-associations","frontend","h5a","hacktoberfest","html","language","open-source","yacc","yacc-lex"],"latest_commit_sha":null,"homepage":"https://ngdream.github.io/H5A.github.io","language":"Yacc","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ngdream.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.md","contributing":"contributing.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":"christ118","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2022-07-21T02:00:32.000Z","updated_at":"2025-03-10T16:29:33.000Z","dependencies_parsed_at":"2023-02-08T20:31:30.615Z","dependency_job_id":null,"html_url":"https://github.com/ngdream/H5assembler","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ngdream%2FH5assembler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ngdream%2FH5assembler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ngdream%2FH5assembler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ngdream%2FH5assembler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ngdream","download_url":"https://codeload.github.com/ngdream/H5assembler/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248862714,"owners_count":21173865,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["assembler","bison","contributions-welcome","cplusplus","file-associations","frontend","h5a","hacktoberfest","html","language","open-source","yacc","yacc-lex"],"created_at":"2024-11-08T03:46:30.430Z","updated_at":"2025-04-14T10:33:08.648Z","avatar_url":"https://github.com/ngdream.png","language":"Yacc","funding_links":["https://ko-fi.com/christ118"],"categories":[],"sub_categories":[],"readme":"\n![](https://github.com/ngdream/H5assembler/blob/8b52dca1f889ab0f93dc8b1d9cc7f0c92155ca85/share/social.png)\n# H5 Assembler\nits made for all web developer who doesn't like to write the same code  in different file  which his currency : ***``  don't repeat yourself ``***\u003cbr/\u003e\nyou will never need to rewrite the same text again\n\n## state\nthe H5A repository is on github \nthe current version is the 1.0.2\n\n## building\n1. ### on window\nif you want to build H5assembler on window \n- download msys64\n- download mingw64 or  mingw32 toolchains\n\n- download flex , bison and make\nin msys64 type\n```shell\npacman -S flex\npacman -S bison\npacman -S make\n```\n-run the make command throw msys shell  in the project directory\n``` make```\n\n\n1. ### on linux debian\nif you want to build H5assembler on window \n- download flex , bison and make\nin msys64 type\n```shell\nsudo apt-get update \nsudo apt install make\nsudo apt-get install flex bison\n\n```\n-run the make command\n``` make debian```\n## exemple of use\nh5assembler offers you a technology allowing you to reduce your html code and guarantees you an easy integration in frameworks such as (laravel, django)\n\n**navbar.html**\n\n```html\n\u003cnav\u003e\n    \u003ca href=\"\"\u003emikle\u003c/a\u003e\n    \u003ca href=\"\"\u003ejordan\u003c/a\u003e\n    \u003ca href=\"\"\u003etaba\u003c/a\u003e\n\u003c/nav\u003e\n```\n**index.html**\n```html\n\u003chtml lang=\"en\"\u003e\n\u003chead\u003e\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003clink rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css\"\u003e\n    \n    \u003ctitle\u003esimple include H5assembler\u003c/title\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n@include(\"navbar.html\")\n\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\nin in the same directory than index.html run command ``H5A index.html output.html``.\nthis command will generate an output.html file with the following content\n**output.html**\n\n```html\n\u003chtml lang=\"en\"\u003e\n\u003chead\u003e\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"\u003e\n    \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n    \u003clink rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css\"\u003e\n    \n    \u003ctitle\u003esimple include H5assembler\u003c/title\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n\u003cnav\u003e\n    \u003ca href=\"\"\u003emikle\u003c/a\u003e\n    \u003ca href=\"\"\u003ejordan\u003c/a\u003e\n    \u003ca href=\"\"\u003etaba\u003c/a\u003e\n\u003c/nav\u003e\n\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\nfor more information about h5 using  read the  [``documentation``](documentation) \n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fngdream%2Fh5assembler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fngdream%2Fh5assembler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fngdream%2Fh5assembler/lists"}