Troubleshooting

Filing Bugs & Troubleshooting

These are required prerequisites before filing an issue on GitHub

Step 1: Attempt To Upgrade fastpages

See the Upgrading guide.

In addition to upgrading, if developing locally, refresh your Docker containers with the following commands from the root of your repo:

make remove followed by make build

Step 2: Search Relevant Places For Similar Issues

Step 3: Observe Build Logs When Developing Locally

Step 4: See if there are errors in the build process of GitHub Actions.

Step 5: Once you have performed all the above steps, post your issue in the fastai forums or a GitHub Issue.

You must provide ALL of the above information.

Frequent Errors

  1. Malformed front matter. Note that anything defined in front matter must be valid YAML. Failure to provide valid YAML could result in your page not rendering in your blog. For example, if you want a colon in your title you must escape it with double quotes like this:

    - title: "Deep learning: A tutorial"

    or in a notebook

    # "Deep learning: A tutorial"

    See this tutorial on YAML for more information.

    Colons, tilda, asteriks and other characters may cause your front matter to break and for your posts to not render. If you violoate these conventions you often get an error that looks something like this:

     Error: YAML Exception reading ... (<unknown>): mapping values are not allowed
  2. Can you customize the styling or theme? A: See Customizing

See the FAQ for frequently asked questions.

Last updated