javiereguiluz / easybook

Book publishing as easy as it should be (built with Symfony components)
https://easycorp.io/EasyBook
Other
754 stars 81 forks source link

labels:[] dosn't seem to be working #145

Closed gunharth closed 10 years ago

gunharth commented 10 years ago

I'm trying to hide all labels from the editions following the instructions as per the documentation. e.g:

print:
    format:         pdf
    labels:         []

Using version 5.0-DEV this doesn't have any effect - all labels are visible ...

I'm working around this with custom templates but it would be great to get a solution for this.

Cheers

javiereguiluz commented 10 years ago

@grandolf apparently, it was a documentation error and not a real bug. If you set the following option, your book should not display any label:

print:
    format:         pdf
    labels:         ~
gunharth commented 10 years ago

Ah ok! - working perfectly now. Thank you!