diff --git a/docs/installation.md b/docs/installation.md index 64a14f8..26eb581 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -134,21 +134,23 @@ pip install -e . ``` !!! warning "Fortran compiler required" - Source builds require a working Fortran compiler (`gfortran` recommended) as well as - `meson` and `meson-python`. - -```bash -# Debian/Ubuntu -sudo apt install gfortran - -# Fedora -sudo dnf install gcc-gfortran - -# macOS (Homebrew) -brew install gcc -``` - -On Windows, install MinGW-w64 with gfortran or use MSYS2. + Source builds require a working Fortran compiler. On most Linux distributions, + install `gfortran`: + + === "Debian / Ubuntu" + ```bash + sudo apt install gfortran + ``` + === "Fedora" + ```bash + sudo dnf install gcc-gfortran + ``` + === "macOS (Homebrew)" + ```bash + brew install gcc + ``` + === "Windows" + Install [MinGW-w64](https://www.mingw-w64.org/) with gfortran or use MSYS2. ## Verifying the installation diff --git a/mkdocs.yml b/mkdocs.yml index ad64787..22aa35e 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -19,6 +19,7 @@ theme: markdown_extensions: - attr_list - md_in_html + - pymdownx.blocks.caption - tables - toc: permalink: true @@ -28,6 +29,9 @@ markdown_extensions: - pymdownx.superfences - pymdownx.highlight: pygments_lang_class: true + - pymdownx.emoji: + emoji_index: !!python/name:material.extensions.emoji.twemoji + emoji_generator: !!python/name:material.extensions.emoji.to_svg - pymdownx.tabbed: alternate_style: true - pymdownx.arithmatex: