forestryio / forestry-vscode

A Visual Studio Code extension for developing projects managed with Forestry.io
https://marketplace.visualstudio.com/items?itemName=forestryio.forestry
Apache License 2.0
18 stars 0 forks source link

SectionWidget does not support Jekyll #8

Open ncphillips opened 6 years ago

ncphillips commented 6 years ago

Is your feature request related to a problem? Please describe.

The SectionWidget never displays for content in Jekyll Sites.

This is because Forestry exports the list of sections as collections for Jekyll sites.

Describe the solution you'd like

Pseudocode

...
if (!settings["hugo_version"]) {
  settings["sections"] = settings["collections"]
}
...

Describe alternatives you've considered

None