tree: 0444a91c0548f6e4ac565188067939dc822b2eec [path history] [tgz]
  1. 4.0/
  2. 5.0/
  3. 6.0/
  4. _data/
  5. _layouts/
  6. bootstrap/
  7. data/
  8. devel/
  9. dist/
  10. fisher-callhome-corpus/
  11. images/
  12. indian-parallel-corpora/
  13. language-packs/
  14. publications/
  15. releases/
  16. support/
  17. .gitignore
  18. _config.yml
  19. blog.css
  20. CNAME
  21. contributors.md
  22. index.md
  23. index5.html
  24. joshua.bib
  25. joshua.css
  26. joshua4.css
  27. joshua6.css
  28. language-packs.csv
  29. README.md
  30. releases.md
  31. style.css
README.md

This directory contains the Joshua web site, including

  • The Joshua decoder main web page
  • The Indian language corpora (in indian-parallel-corpora/)
  • Jekyll code for generating the Joshua end user documentation

The main thing you might want to do (assuming you have write access to this repository) is to add documentation pages. This can be done in two steps:

  1. Write your documentation using Github-supported Markdown or HTML. Create the file in the current directory, using one of the existing files as templates. The top of the file contains a number of lines specifying metadata. The metadata looks like this:


    layout: default.html title: My New Page

    Your content goes here.

    At minimum, you should specify the template to apply (relative to _layouts, probably default.html) and the page's title. Everything below the second set of --- is substituted into the template where {{ content }} is found.

  2. Edit _layouts/default.html, which contains the template file used to host user documentation. You'll want to add a link to your page from the sidebar.

  3. If you also want to edit the main documentation page, you can find that in the file index.md. This file is transformed by Jekyll and placed in userdocs/ alongside everything else.

Note that if you‘re testing on your local machine, you’ll need to install Jekyll. You need to have ruby installed. Then type:

gem install jekyll  # you might need to prepend 'sudo'

You can then type:

jekyll --pygments --safe

to generate the user pages. Do this within a web server and point a recent browser at it. You can also run your own minimal web server with Jekyll. This page has a good Jekyll tutorial.