lukasgeiter / mkdocs-awesome-pages-plugin

An MkDocs plugin that simplifies configuring page titles and their order
MIT License
472 stars 36 forks source link

Set Directory title or arrange directories doesnt work #21

Closed RanVargas closed 4 years ago

RanVargas commented 4 years ago

It doesn't matter if I explicitly specify in the .pages the name of the directory or the title I gave, the arrange doesn't work nor does the Set directory name work either. Example of what I am doing

in a directory named Development: my .pages.yml file has title: Desarrollo

which doesn't work nor produces any changes.

In another directory which has several subdirectories:

arrange:

which doesn't work either.

RanVargas commented 4 years ago

I wanted to add that I am working with mkdocs 1.1 and pages-awesome 2.2.1

lukasgeiter commented 4 years ago

You mention your file is called .pages.yml. By default, the recognized filename is just .pages without .yml. If you want to use .pages.yml, you can change this with the filename option:

plugins:
    - awesome-pages:
        filename: .pages.yml
RanVargas commented 4 years ago

THANKS SO MUCH. I guess I missread the readme file.