{"id":20631074,"url":"https://github.com/zsnout/simple-slideshows","last_synced_at":"2025-04-15T18:33:35.448Z","repository":{"id":163010142,"uuid":"638467636","full_name":"zSnout/simple-slideshows","owner":"zSnout","description":"A project enabling anybody to easily create beautiful slideshows from Markdown documents.","archived":false,"fork":false,"pushed_at":"2023-05-15T01:22:44.000Z","size":486,"stargazers_count":1,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-28T23:35:07.022Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Astro","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/zSnout.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-09T12:37:02.000Z","updated_at":"2023-05-09T12:37:40.000Z","dependencies_parsed_at":"2023-06-29T13:31:32.118Z","dependency_job_id":null,"html_url":"https://github.com/zSnout/simple-slideshows","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zSnout%2Fsimple-slideshows","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zSnout%2Fsimple-slideshows/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zSnout%2Fsimple-slideshows/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zSnout%2Fsimple-slideshows/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zSnout","download_url":"https://codeload.github.com/zSnout/simple-slideshows/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249129614,"owners_count":21217401,"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-11-16T14:10:45.853Z","updated_at":"2025-04-15T18:33:35.443Z","avatar_url":"https://github.com/zSnout.png","language":"Astro","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simple Slideshows Starter Kit\n\nWelcome to Simple Slideshows! If you haven't downloaded this project already, do\nso now by running `git clone`.\n\n```sh\ngit clone https://github.com/zSnout/simple-slideshows.git\n```\n\nTo create new slideshow decks, add Markdown files to the `decks` folder. Simple\nSlideshows will automatically create slides at each level 1 \u0026 2 heading. For\nexample, this code...\n\n```md\n# Hello world\n\nA presentation made with Simple Slideshows\n\n## A slide\n\nWith some content.\n```\n\n...will generate two slides: a title slide for the level 1 heading, and a\nstandard slide for the level 2 heading.\n\n## Slide Guidelines\n\nSimple Slideshows doesn't support everything, but it can do most anything you'll\nlike. The heading of a slide automatically becomes its title, and everything\nelse is turned into content.\n\nSimple Slideshows supports...\n\n- Paragraphs\n- Lists (unordered and ordered)\n- Tables\n- Code blocks\n- LaTeX equations\n- Background images\n\n## Background Images\n\nTo mark something as a background image, write \"background\" in place of its alt\ntext.\n\n```md\n![background](/path-to-my-image.jpg)\n```\n\nThis makes the background cover the entire slide. Because of the cover behavior,\nsome of your image may be chopped off. To prioritize a certain side of the\nimage, add `b`, `t`, `r`, or `l` to the alt text, or a combination of two\ndirections.\n\n```md\n\u003c!-- `t` shows as much of the top part of the image as possible. --\u003e\n\n![background t](/path-to-my-image.jpg)\n```\n\n```md\n\u003c!-- `br` shows as much of the bottom-right part of the image as possible. --\u003e\n\n![background br](/path-to-my-image.jpg)\n```\n\n## Theming\n\nTo change the theme of your slideshow, open `.astro/src/components/Layout.astro`\nand change the class name of the `\u003chtml\u003e` tag to something other than\n`z-slate-light`. Currently, there are ten themes available:\n\n- z-slate-light\n- z-slate-dark\n- z-zinc-light\n- z-zinc-dark\n- z-gray-light\n- z-gray-dark\n- z-neutral-light\n- z-neutral-dark\n- z-stone-light\n- z-stone-dark\n\nIf you know CSS, you can also customize your theme by opening `theme.postcss`\nand modifying the styles included in it.\n\n## Homepage information\n\nTo change the title and subtitle shown on your project's homepage, edit their\nrespective variables in `.env`.\n\n## Slideshow meta-information\n\nTo add meta information to a slideshow, use simple YAML metadata.\n\n```md\n---\nkey_1: true\nkey_2: hello world\n---\n\n...\n```\n\nCurrently, slideshows can adjust these options. More may be added in future\nupdates to Simple Slideshows.\n\n```yaml\n# Assigns the slideshow a category. This is\n# visible on the homepage of your site.\ncategory: Your category here\n\n# Hides a slideshow from the homepage. It\n# will still be accessible through URLs.\nhidden: true\n\n# Overrides the default title of your\n# slideshow with a manual one.\ntitle: Your slideshow title\n```\n\n## Publishing to Vercel and Netlify\n\nTo make working with the repo more ergonomic, the main Astro project underlying\nSimple Slideshows is packed into an `.astro` folder. As such, the project output\nwill be located in `.astro/dist`, not `dist`. You may need to configure Vercel,\nNetlify, and other cloud providers to handle this case.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzsnout%2Fsimple-slideshows","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzsnout%2Fsimple-slideshows","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzsnout%2Fsimple-slideshows/lists"}