### Create Standalone Example Container
Source: https://github.com/gsa/plainlanguage.gov/wiki/Add-inline-examples
Wraps content in a styled container for standalone writing guideline demonstrations. Uses a div with the 'example-container' class.
```html
### Qualifications of permittees and lessees
- Who may hold leases and permits?
- Can foreign citizens hold permits or leases?
- How do I file evidence of my qualifications?
- Can I amend my qualifications statement?
```
--------------------------------
### Install Jekyll and Bundler
Source: https://github.com/gsa/plainlanguage.gov/blob/main/README.md
Installs Jekyll, a Ruby-based static site generator, and Bundler, a dependency manager for Ruby projects. This is a prerequisite for setting up the development environment.
```bash
gem install bundler jekyll
```
--------------------------------
### Install Project Dependencies
Source: https://github.com/gsa/plainlanguage.gov/blob/main/README.md
Installs project dependencies using both Ruby's Bundler and Node.js's npm. This ensures all necessary libraries and packages are available for running the site and tests.
```bash
bundle install
npm install
```
--------------------------------
### Run the Site Locally
Source: https://github.com/gsa/plainlanguage.gov/blob/main/README.md
Starts the Jekyll development server to run the plainlanguage.gov site locally. This command allows developers to preview changes before deployment.
```bash
npm start
```
--------------------------------
### Run Accessibility Tests
Source: https://github.com/gsa/plainlanguage.gov/blob/main/README.md
Initiates an automated web accessibility test using pa11y. This command should be run after the site is running locally and requires pa11y to be installed.
```bash
npm run test:pa11y
```