From 7ceb3d032a0f86e860ae6998cf7954c963217efc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-Philippe=20Bruy=C3=A8re?= Date: Sun, 16 Aug 2020 02:20:34 +0200 Subject: [PATCH] no-style --- .gitignore | 3 + 404.html | 25 ++++ Gemfile | 30 +++++ _config.yml | 60 +++++----- _posts/2020-08-16-welcome-to-jekyll.markdown | 29 +++++ about.markdown | 18 +++ assets/images/vkvg.png | Bin 8624 -> 0 bytes assets/images/vkvg.svg | 120 ------------------- building/README.md | 15 +++ building/building.md | 20 ---- building/debian.md | 5 +- building/windows.md | 5 +- index.markdown | 6 + 13 files changed, 161 insertions(+), 175 deletions(-) create mode 100644 .gitignore create mode 100644 404.html create mode 100644 Gemfile create mode 100644 _posts/2020-08-16-welcome-to-jekyll.markdown create mode 100644 about.markdown delete mode 100644 assets/images/vkvg.png delete mode 100644 assets/images/vkvg.svg delete mode 100644 building/building.md create mode 100644 index.markdown diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5289489 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.jekyll-cache +_site +Gemfile.lock diff --git a/404.html b/404.html new file mode 100644 index 0000000..086a5c9 --- /dev/null +++ b/404.html @@ -0,0 +1,25 @@ +--- +permalink: /404.html +layout: default +--- + + + +
+

404

+ +

Page not found :(

+

The requested page could not be found.

+
diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..8b23a00 --- /dev/null +++ b/Gemfile @@ -0,0 +1,30 @@ +source "https://rubygems.org" +# Hello! This is where you manage which Jekyll version is used to run. +# When you want to use a different version, change it below, save the +# file and run `bundle install`. Run Jekyll with `bundle exec`, like so: +# +# bundle exec jekyll serve +# +# This will help ensure the proper Jekyll version is running. +# Happy Jekylling! +gem "jekyll", "~> 4.1.1" +# This is the default theme for new Jekyll sites. You may change this to anything you like. +gem "no-style-please" +# If you want to use GitHub Pages, remove the "gem "jekyll"" above and +# uncomment the line below. To upgrade, run `bundle update github-pages`. +# gem "github-pages", group: :jekyll_plugins +# If you have any plugins, put them here! +group :jekyll_plugins do + gem "jekyll-feed", "~> 0.12" +end + +# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem +# and associated library. +platforms :mingw, :x64_mingw, :mswin, :jruby do + gem "tzinfo", "~> 1.2" + gem "tzinfo-data" +end + +# Performance-booster for watching directories on Windows +gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin] + diff --git a/_config.yml b/_config.yml index ff2f838..641abb6 100644 --- a/_config.yml +++ b/_config.yml @@ -1,28 +1,34 @@ title: VKVG Documentation -lang: en -description: Open source 2d vector graphic library for vulkan writen in c. - -remote_theme: rundocs/jekyll-rtd-theme # rundocs/jekyll-theme-docsify - -edit: true -addons_branch: true - -addons: - - github - - plugins - - analytics - -copyright: - revision: true - -readme_index: - with_frontmatter: trueremote_theme: pmarsceill/just-the-docs - - -color_scheme: "dark" -logo: "/assets/images/vkvg.png" - -# Google Analytics Tracking (optional) -ga_tracking: UA-175345502-1 - - +email: jp_bruyere@hotmail.com +description: >- + description: Open source 2d vector graphic library for vulkan writen in c. + +#baseurl: "vkvg" # the subpath of your site, e.g. /blog +url: "https://jpbruyere.github.io" # the base hostname & protocol for your site, e.g. http://example.com +twitter_username: jpbruyere +github_username: jpbruyere + +# Build settings +theme: no-style-please +plugins: + - jekyll-feed + +# Exclude from processing. +# The following items will not be processed, by default. +# Any item listed under the `exclude:` key here will be automatically added to +# the internal "default list". +# +# Excluded items can be processed by explicitly listing the directories or +# their entries' file path in the `include:` list. +# +# exclude: +# - .sass-cache/ +# - .jekyll-cache/ +# - gemfiles/ +# - Gemfile +# - Gemfile.lock +# - node_modules/ +# - vendor/bundle/ +# - vendor/cache/ +# - vendor/gems/ +# - vendor/ruby/ diff --git a/_posts/2020-08-16-welcome-to-jekyll.markdown b/_posts/2020-08-16-welcome-to-jekyll.markdown new file mode 100644 index 0000000..61f9cfb --- /dev/null +++ b/_posts/2020-08-16-welcome-to-jekyll.markdown @@ -0,0 +1,29 @@ +--- +layout: post +title: "Welcome to Jekyll!" +date: 2020-08-16 00:53:29 +0200 +categories: jekyll update +--- +You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated. + +Jekyll requires blog post files to be named according to the following format: + +`YEAR-MONTH-DAY-title.MARKUP` + +Where `YEAR` is a four-digit number, `MONTH` and `DAY` are both two-digit numbers, and `MARKUP` is the file extension representing the format used in the file. After that, include the necessary front matter. Take a look at the source for this post to get an idea about how it works. + +Jekyll also offers powerful support for code snippets: + +{% highlight ruby %} +def print_hi(name) + puts "Hi, #{name}" +end +print_hi('Tom') +#=> prints 'Hi, Tom' to STDOUT. +{% endhighlight %} + +Check out the [Jekyll docs][jekyll-docs] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll Talk][jekyll-talk]. + +[jekyll-docs]: https://jekyllrb.com/docs/home +[jekyll-gh]: https://github.com/jekyll/jekyll +[jekyll-talk]: https://talk.jekyllrb.com/ diff --git a/about.markdown b/about.markdown new file mode 100644 index 0000000..8b4e0b2 --- /dev/null +++ b/about.markdown @@ -0,0 +1,18 @@ +--- +layout: page +title: About +permalink: /about/ +--- + +This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/) + +You can find the source code for Minima at GitHub: +[jekyll][jekyll-organization] / +[minima](https://github.com/jekyll/minima) + +You can find the source code for Jekyll at GitHub: +[jekyll][jekyll-organization] / +[jekyll](https://github.com/jekyll/jekyll) + + +[jekyll-organization]: https://github.com/jekyll diff --git a/assets/images/vkvg.png b/assets/images/vkvg.png deleted file mode 100644 index 6b8c9881218542092bc1a104d72732b63ca0d45b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8624 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 - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/building/README.md b/building/README.md index eb49247..071775a 100644 --- a/building/README.md +++ b/building/README.md @@ -2,4 +2,19 @@ sort: 1 --- +# Building + {% include list.liquid %} + +## Requirements: + +- [CMake](https://cmake.org/): version > 12. +- [Vulkan](https://www.khronos.org/vulkan/) +- [FontConfig](https://www.freedesktop.org/wiki/Software/fontconfig/) +- [Freetype](https://www.freetype.org/) +- [Harfbuzz](https://www.freedesktop.org/wiki/Software/HarfBuzz/) +- GLSLC: spirv compiler, included in [LunarG SDK](https://www.lunarg.com/vulkan-sdk/) (building only) +- [xxd](https://linux.die.net/man/1/xxd): generate headers with precompiled shaders (building only) +- [GLFW](http://www.glfw.org/): optional, if present tests are built. + +if `glslc` or `xxd` are not present, a precompiled version of the shaders is stored in the git tree. diff --git a/building/building.md b/building/building.md deleted file mode 100644 index cdada10..0000000 --- a/building/building.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -layout: default -title: Building -nav_order: 2 -has_children: true -permalink: /docs/building ---- - -## Requirements: - -- [CMake](https://cmake.org/): version > 12. -- [Vulkan](https://www.khronos.org/vulkan/) -- [FontConfig](https://www.freedesktop.org/wiki/Software/fontconfig/) -- [Freetype](https://www.freetype.org/) -- [Harfbuzz](https://www.freedesktop.org/wiki/Software/HarfBuzz/) -- GLSLC: spirv compiler, included in [LunarG SDK](https://www.lunarg.com/vulkan-sdk/) (building only) -- [xxd](https://linux.die.net/man/1/xxd): generate headers with precompiled shaders (building only) -- [GLFW](http://www.glfw.org/): optional, if present tests are built. - -if `glslc` or `xxd` are not present, a precompiled version of the shaders is stored in the git tree. diff --git a/building/debian.md b/building/debian.md index fd31268..99a8b26 100644 --- a/building/debian.md +++ b/building/debian.md @@ -1,8 +1,5 @@ --- -layout: default -title: Debian instructions -parent: Building -nav_order: 1 +sort: 1 --- # Install Dependencies diff --git a/building/windows.md b/building/windows.md index e6fb3af..e983974 100644 --- a/building/windows.md +++ b/building/windows.md @@ -1,8 +1,5 @@ --- -layout: default -title: Windows instructions -parent: Building -nav_order: 2 +sort: 3 --- # Build on Windows with Visual Studio IDE: diff --git a/index.markdown b/index.markdown new file mode 100644 index 0000000..0671507 --- /dev/null +++ b/index.markdown @@ -0,0 +1,6 @@ +--- +# Feel free to add content and custom Front Matter to this file. +# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults + +layout: home +--- -- 2.47.3