Bump addressable from 2.7.0 to 2.8.1 (#415)

Bumps [addressable](https://github.com/sporkmonger/addressable) from 2.7.0 to 2.8.1.
- [Release notes](https://github.com/sporkmonger/addressable/releases)
- [Changelog](https://github.com/sporkmonger/addressable/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sporkmonger/addressable/compare/addressable-2.7.0...addressable-2.8.1)

---
updated-dependencies:
- dependency-name: addressable
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 file changed
tree: 48973bdb8e356888f713b17bc9c9451c89b2a4b9
  1. .bundle/
  2. .github/
  3. _layouts/
  4. css/
  5. graphx/
  6. images/
  7. js/
  8. mllib/
  9. news/
  10. releases/
  11. screencasts/
  12. site/
  13. sql/
  14. streaming/
  15. talks/
  16. .asf.yaml
  17. .gitignore
  18. _config.yml
  19. apple-touch-icon.png
  20. committers.md
  21. community.md
  22. contributing.md
  23. developer-tools.md
  24. doap.rdf
  25. documentation.md
  26. downloads.md
  27. error-message-guidelines.md
  28. examples.md
  29. faq.md
  30. favicon-16x16.png
  31. favicon-32x32.png
  32. favicon.ico
  33. Gemfile
  34. Gemfile.lock
  35. history.md
  36. improvement-proposals.md
  37. index.md
  38. LICENSE
  39. mailing-lists.md
  40. merge_pr.py
  41. powered-by.md
  42. README.md
  43. release-process.md
  44. research.md
  45. robots.txt
  46. security.md
  47. sitemap.xml
  48. third-party-projects.md
  49. trademarks.md
  50. versioning-policy.md
README.md

Generating the website HTML

In this directory you will find text files formatted using Markdown, with an .md suffix.

Building the site requires Jekyll Rouge. The easiest way to install the right version of these tools is using Bundler and running bundle install in this directory.

See also https://github.com/apache/spark/blob/master/docs/README.md

A site build will update the directories and files in the site directory with the generated files. Using Jekyll via bundle exec jekyll locks it to the right version. So after this you can generate the html website by running bundle exec jekyll build in this directory. Use the --watch flag to have jekyll recompile your files as you save changes.

In addition to generating the site as HTML from the Markdown files, jekyll can serve the site via a web server. To build the site and run a web server use the command bundle exec jekyll serve which runs the web server on port 4000, then visit the site at http://localhost:4000.

Please make sure you always run bundle exec jekyll build after testing your changes with bundle exec jekyll serve, otherwise you end up with broken links in a few places.

Updating Jekyll version

To update Jekyll or any other gem please follow these steps:

  1. Update the version in the Gemfile
  2. Run bundle update which updates the Gemfile.lock
  3. Commit both files

Docs sub-dir

The docs are not generated as part of the website. They are built separately for each release of Spark from the Spark source repository and then copied to the website under the docs directory. See the instructions for building those in the readme in the Spark project's /docs directory.

Rouge and Pygments

We also use Rouge for syntax highlighting in documentation Markdown pages. Its HTML output is compatible with CSS files designed for Pygments.

To mark a block of code in your Markdown to be syntax highlighted by jekyll during the compile phase, use the following syntax:

{% highlight scala %}
// Your Scala code goes here, you can replace Scala with many other
// supported languages too.
{% endhighlight %}

You probably don't need to install that unless you want to regenerate the Pygments CSS file. It requires Python, and can be installed by running sudo easy_install Pygments.

Merge PR

To merge pull request, use the merge_pr.py script which also squashes the commits.