{"id":13594574,"url":"https://github.com/coldnew/org-ioslide","last_synced_at":"2025-07-23T16:39:34.316Z","repository":{"id":9755067,"uuid":"11720707","full_name":"coldnew/org-ioslide","owner":"coldnew","description":"Export org-mode to Google I/O HTML5 slide.","archived":false,"fork":false,"pushed_at":"2016-10-15T13:38:45.000Z","size":6921,"stargazers_count":273,"open_issues_count":16,"forks_count":38,"subscribers_count":15,"default_branch":"master","last_synced_at":"2025-05-12T14:29:41.017Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/coldnew.png","metadata":{"files":{"readme":"README.org","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-07-28T14:27:39.000Z","updated_at":"2025-04-03T08:22:07.000Z","dependencies_parsed_at":"2022-08-19T13:11:38.367Z","dependency_job_id":null,"html_url":"https://github.com/coldnew/org-ioslide","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coldnew%2Forg-ioslide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coldnew%2Forg-ioslide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coldnew%2Forg-ioslide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coldnew%2Forg-ioslide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coldnew","download_url":"https://codeload.github.com/coldnew/org-ioslide/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253754933,"owners_count":21958929,"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-08-01T16:01:35.890Z","updated_at":"2025-05-12T14:30:07.609Z","avatar_url":"https://github.com/coldnew.png","language":"JavaScript","funding_links":[],"categories":["JavaScript","JavaScript (71)"],"sub_categories":[],"readme":"#+TITLE: org-ioslide\n\n# Badge\n[[http://www.gnu.org/licenses/gpl-3.0.txt][https://img.shields.io/badge/license-GPL_3-green.svg?dummy]]\n[[https://travis-ci.org/coldnew/org-ioslide][https://travis-ci.org/coldnew/org-ioslide.svg?branch=master]]\n[[http://melpa.org/#/ox-ioslide][http://melpa.org/packages/ox-ioslide-badge.svg]]\n[[http://stable.melpa.org/#/ox-ioslide][http://stable.melpa.org/packages/ox-ioslide-badge.svg]]\n[[http://waffle.io/coldnew/org-ioslide][https://badge.waffle.io/coldnew/org-ioslide.png?label=ready\u0026title=Ready]]\n\nExport your Org document to Google I/O HTML5 slide.\nSee [[http://coldnew.github.io/org-ioslide][DEMO]] slide.\n\n#+BEGIN_QUOTE\nNote: Org 8.x or above is required.\n#+END_QUOTE\n\n* Installation\n\nIf you have =melpa= and =emacs24= installed, simply type:\n\n: M-x package-install ox-ioslide\n\nAnd following code in your .emacs\n\n#+BEGIN_SRC emacs-lisp\n  (require 'ox-ioslide)\n#+END_SRC\n\nFor =cask= user, just add following lines in your =Cask= file\n\n#+BEGIN_SRC emacs-lisp\n  (source melpa)\n\n  (depends-on \"ox-ioslide\")\n#+END_SRC\n\nIf you want to install manually, just do as following:\n\n=git clone= this repository into =whatever/=, then in your Emacs init file:\n\n#+BEGIN_SRC emacs-lisp\n  (add-to-list 'load-path \"path/to/whatever/\")\n  (require 'ox-ioslide)\n#+END_SRC\n\n* Usage\n\nJust take a look of [[file:example/index.html]] and\n[[file:example/index.org]], which contains detailed examples \u0026 demo.\n\n** If Tired Of Memorize Magic Code...\n=ox-ioslide-helper.el= is also available to help you interactively inserting verbose properties/options/attributes into your slide file. \n\n#+BEGIN_QUOTE\nThis package depends on =makey.el=, install it if not.\n#+END_QUOTE\n\nJust =(require 'ox-ioslide-helper)= then =M-x ioslide:helper=.\n\n* Development Info\n** Editing CSS\n\n[[http://compass-style.org/install/][Compass]] is a CSS preprocessor used to compile\nSCSS/SASS into CSS. We chose SCSS for the new slide deck for maintainability,\neasier browser compatibility, and because...it's the future!\n\nThat said, if not comfortable working with SCSS or don't want to learn something\nnew, not a problem. The generated .css files can already be found in\n(see [[theme/css)][/theme/css]] You can just edit those and bypass SCSS altogether.\nHowever, our recommendation is to use Compass. It's super easy to install and use.\n\n*** Installing Compass and making changes\n\nFirst, install compass:\n\n: sudo gem update --system\n: sudo gem install compass\n\nNext, you'll want to watch for changes to the exiting .scss files in [[theme/scss][/theme/scss]]\nand any new one you add:\n\n: $ cd io-2012-slides\n: $ compass watch\n\nThis command automatically recompiles the .scss file when you make a change.\nIts corresponding .css file is output to [[theme/css][/theme/css]]. Slick.\n\nBy default, [[config.rb][config.rb]] in the main project folder outputs minified\n.css. It's a best practice after all! However, if you want unminified files,\nrun watch with the style output flag:\n\n    compass watch -s expanded\n\n*Note:* You should not need to edit [[theme/scss/_base.scss][_base.scss]].\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoldnew%2Forg-ioslide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoldnew%2Forg-ioslide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoldnew%2Forg-ioslide/lists"}