{"id":16482536,"url":"https://github.com/f/atom-bootstrap3","last_synced_at":"2025-03-16T18:31:41.490Z","repository":{"id":16056000,"uuid":"18800143","full_name":"f/atom-bootstrap3","owner":"f","description":"Twitter Bootstrap 3 Snippets for Atom","archived":false,"fork":false,"pushed_at":"2017-09-19T08:34:15.000Z","size":512,"stargazers_count":80,"open_issues_count":26,"forks_count":34,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-02-27T12:14:11.038Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CoffeeScript","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/f.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-04-15T13:01:40.000Z","updated_at":"2024-10-13T21:01:53.000Z","dependencies_parsed_at":"2022-08-31T11:23:26.196Z","dependency_job_id":null,"html_url":"https://github.com/f/atom-bootstrap3","commit_stats":null,"previous_names":[],"tags_count":25,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f%2Fatom-bootstrap3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f%2Fatom-bootstrap3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f%2Fatom-bootstrap3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/f%2Fatom-bootstrap3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/f","download_url":"https://codeload.github.com/f/atom-bootstrap3/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243826783,"owners_count":20354220,"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":[],"created_at":"2024-10-11T13:11:10.760Z","updated_at":"2025-03-16T18:31:40.659Z","avatar_url":"https://github.com/f.png","language":"CoffeeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bootstrap 3 Support for Atom\n\nProvides [Bootstrap 3][1] classes and HTML tags with autocompletion features.\n\nInstall:\n```bash\napm install atom-bootstrap3\n```\n\nKey Features:\n\n  - Supports autocompletion of all helper classes in JavaScript, CSS and HTML\n  - Snippet support for all components.\n  - Autocompletion for **Glyphicons**, **Fontawesome** and **Octicons**\n\nAn example with [HTML Preview][3]\n\n![Atom HTML Preview with Bootstrap](https://dl.dropboxusercontent.com/u/20947008/webbox/atom/atom-bootstrap-3.gif)\n\n## Templates\n\n  - `html-`: Generates Basic HTML Template\n  - `html-min`: Generates Basic HTML Template without comments\n  - `html-oi`: Generates Basic HTML Template (replace `fontawesome` in favor of `octicons`)\n\n## Components\n\nAll components also have autocompletion support for extra options.\n\n### Icons\n\nThe plugin has Glyphicon and Fontawesome support.\n\n  - `icon`: Generates glyphicon icon snippet\n  - `fa`: Generates fontawesome icon snippet\n  - `oi`: Generates octicon snippet\n\n### Alert\n\n  - `alert`\n  - `alert-link`\n  - `close`\n\n### Badge\n\n  - `badge`\n\n### Breadcrumb\n\n  - `breadcrumb`\n  - `item`\n\n### Buttons\n\n  - `btn`\n  - `btn-group`\n  - `btn-group-vertical`\n  - `btn-toolbar`\n  - `btn-modal`\n\n### Menus and Dropdowns\n\n  - `dropdown`\n  - `menudivider`\n  - `menuheader`\n  - `menuitem`\n\n### Forms\n\n  - `form-group`\n  - `input-group`\n\n### Labels\n\n  - `label-`\n\n### Lists\n\n  - `list-group`\n  - `list-inline`\n  - `list-item`\n  - `list-unstyled`\n\n### Tabs and Navigations\n\n  - `nav-pills`\n  - `nav-tabs`\n  - `nav-`\n  - `navbar`: Generates standard navbar template\n  - `navbar-drop`: Generates navbar dropdown item\n\n### Other Components\n\n  - `pager`\n  - `page-header`\n  - `pagination`\n  - `panel`\n  - `progress-`\n  - `table-`\n  - `thumbnail`\n  - `well`\n  - `jumbotron`\n\n## JavaScript Components\n\n  - `modal`: Generates modal HTML\n  - `btn-modal`: Generates modal trigger button HTML\n  - `accordion`: Generates accordion HTML\n  - `accordion-item`: Generates accordion item HTML\n  - `carousel`: Generates carousel HTML\n  - `carousel`: Generates carousel item HTML\n  - `navbar`: Generates navbar HTML\n  - `navbar-dropdown`: Generates navbar dropdown item\n\n## Grid\n\n  - `row`: Generates column container: `\u003cdiv class=\"row\"\u003e\u003c/div\u003e`\n  - `col-`: Generates column: `\u003cdiv class=\"col-...\"\u003e\u003c/div\u003e`\n  - `col-lg`: Generates large column: `\u003cdiv class=\"col-lg-...\"\u003e\u003c/div\u003e`\n  - `col-md`: Generates medium column: `\u003cdiv class=\"col-md-...\"\u003e\u003c/div\u003e`\n  - `col-sm`: Generates small column: `\u003cdiv class=\"col-sm-...\"\u003e\u003c/div\u003e`\n  - `col-xs`: Generates extra small column: `\u003cdiv class=\"col-xs-...\"\u003e\u003c/div\u003e`\n  - `con`: Generates container: `\u003cdiv class=\"container\"\u003e\u003c/div\u003e`\n  - `conf`: Generates fluid container: `\u003cdiv class=\"container-fluid\"\u003e\u003c/div\u003e`\n\n## Typography\n\n- `lead`: Lead class `\u003cp class=\"lead\"\u003e`\n- `h1-`: Heading 1 `\u003ch1\u003eText {\u003csmall\u003eoptional\u003c/small\u003e}\u003c/h1\u003e`\n- `h2-`: Heading 2 `\u003ch2\u003eText {\u003csmall\u003eoptional\u003c/small\u003e}\u003c/h2\u003e`\n- `h3-`: Heading 3 `\u003ch3\u003eText {\u003csmall\u003eoptional\u003c/small\u003e}\u003c/h3\u003e`\n- `h4-`: Heading 4 `\u003ch4\u003eText {\u003csmall\u003eoptional\u003c/small\u003e}\u003c/h4\u003e`\n- `h5-`: Heading 5 `\u003ch5\u003eText {\u003csmall\u003eoptional\u003c/small\u003e}\u003c/h5\u003e`\n- `h6-`: Heading 6 `\u003ch6\u003eText {\u003csmall\u003eoptional\u003c/small\u003e}\u003c/h6\u003e`\n- `initialism`: Generates \"initialism\" text\n- `blockquote-reverse`: Generates reverse blockquote\n- `dl-horizontal`\n\n### Notes\n- Snippet funcionality has [some bugs][2], I hope it will be fixed by Atom team.\n- More to come :)\n\n[1]: http://getbootstrap.com/\n[2]: https://github.com/atom/snippets/issues/15\n[3]: http://atom.io/packages/atom-html-preview\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ff%2Fatom-bootstrap3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ff%2Fatom-bootstrap3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ff%2Fatom-bootstrap3/lists"}