The documentation for Plume.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
Marius Monnier a848bd0fcf Add a line wrapping css to not overflow on little screens, add mini_racer to dependencies to build il y a 3 ans
data Add language switcher il y a 3 ans
source Add a line wrapping css to not overflow on little screens, add mini_racer to dependencies to build il y a 3 ans
.gitignore Ignore translate directory il y a 3 ans
Gemfile Add a line wrapping css to not overflow on little screens, add mini_racer to dependencies to build il y a 3 ans
Gemfile.lock Fix #77 Add language switcher (again) (#113) il y a 3 ans
LICENSE Create LICENSE il y a 5 ans
README.md Fix #77 Add language switcher (again) (#113) il y a 3 ans
Rakefile Add "all" task il y a 3 ans
config.rb Fix #77 Add language switcher (again) (#113) il y a 3 ans
crowdin.yml Reset build tasks il y a 3 ans

README.md

docs

The documentation for Plume, available at docs.joinplu.me.

Uses middleman.

Prerequisites

  • Ruby
  • Crowdin CLI v3 if you build translations
  • Netlify CLI if you deploy

Setting up

Install RubyGems including middleman:

bundle config set --local path vendor/bundle
bundle install

Editing documentation

Run

bundle exec middleman

, visit http://localhost:4567/, and then you can see documentation site.

Edit files under source directory and reload your browser, then you see updated content. But this site doesn't include translations. If you want to include translated pages, see next section.

After editing, create a pull request.

Building site with translation integration

If you want to build site with translations, you need set up Crowdin CLI.

Run

bundle exec rake build_site

and then the site with translations is built under build directory. You can see the site using one-liner server such as

ruby -run -e httpd build

or web server such as Caddy.

Updating translation strings

When you add and/or modify strings from current sources, you may want to translate them. To do so, updated contents need to be uploaded to Crowdin. Run

bundle exec rake crowdin:upload

then you can translate strings at Crowdin.

Building translation site

When you build site for https://translate.docs.joinplu.me/, run

bundle exec rake build_trans

then the site is built under translate directory.

Deploying site

You need Netlify CLI if you deploy site.

Run

bundle exec rake deploy

then you can see updated site at https://docs.joinplu.me/.

Deploying translation site

Run

bundle exec rake deploy_trans

and then you can see updated translation site at https://translate.docs.joinplu.me/.