Disallow How to add BlankLine
Ischafak opened this issue · 1 comments
Ischafak commented
Hi, first of all thank you for this wonderful module
i want to ask you this
robots: {
rules: {
UserAgent: '*oo',
Disallow: ['/auth/', '/settings', 'BlankLine', '/search']
}
},
i wrote something like this
it is not very important but is it possible for me to add blankline between settings and search?
Disallow: /auth/
Disallow: /settings/
Disallow: /search*
Ischafak commented
ok i get it i need to add
rules
{
UserAgent: '*oo',
Disallow: ['/auth/', '/settings', '/search', 'BlankLine'],
BlankLine: true
},
{
UserAgent: '*oo',
Disallow: ['/auth/', '/settings', '/search', 'BlankLine'],
}
something like this i guess