gitextract_omxa2yr8/ ├── .gitignore ├── .ruby-version ├── .vimrc ├── Gemfile ├── LICENSE ├── README.md ├── assets/ │ ├── javascripts/ │ │ └── index.js │ └── stylesheets/ │ ├── _bootstrap.sass │ ├── _download.sass │ ├── _features.sass │ ├── _index.sass │ ├── _plugin.sass │ ├── _utils.sass │ ├── _variables.scss │ ├── highlights.sass │ └── index.sass ├── config.rb ├── data/ │ ├── highlights.yml │ └── versions.yml ├── helpers/ │ └── download_helper.rb ├── locales/ │ ├── en.yml │ └── zh-Hans.yml ├── package.json ├── source/ │ ├── _footer.slim │ ├── _header.slim │ ├── highlights-template.html.slim │ ├── images/ │ │ ├── .keep │ │ └── site.webmanifest │ ├── layouts/ │ │ ├── highlights.slim │ │ └── layout.slim │ └── localizable/ │ ├── download.html.slim │ ├── features.html.slim │ ├── index.html.slim │ ├── nightly.html.slim │ └── plugins/ │ └── index.html.slim └── webpack.config.js