### Serve i3wm.org Website Locally with Hugo (Shell) Source: https://github.com/i3/i3.github.io/blob/main/README.md Starts a local development server using Hugo to preview changes to the website content. ```Shell hugo serve ``` -------------------------------- ### Build i3wm.org Website with Hugo (Shell) Source: https://github.com/i3/i3.github.io/blob/main/README.md Runs the Hugo static site generator to build the website. The output is placed in the `docs` directory. ```Shell hugo ``` -------------------------------- ### Generate Docs from AsciiDoc with Make (Shell) Source: https://github.com/i3/i3.github.io/blob/main/README.md Uses the `make` command within the `content/_docs` directory to process AsciiDoc files and generate HTML documentation. ```Shell make -C content/_docs -j ``` -------------------------------- ### Move Generated Docs HTML Files (Shell) Source: https://github.com/i3/i3.github.io/blob/main/README.md Moves the generated HTML files from the temporary `content/_docs` directory to the final `content/docs` directory for inclusion in the website build. ```Shell mv content/_docs/*.html content/docs/ ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.