You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Jekyll allows various URL customizations (called "permalinks") for page output. One of them will turn...
topics/my-topic.html
into...
topics/my-topic/index.html
This allows for a URL like this: topics/my-topic/
If this is done on a site-wide level, any output from the OT will break because all of the links into the content are relative to the output file.
As simple workaround is probably to have an ant parameters that changes outext to "/index.html", so that the OT renders the filename as above.
The problem with that is all links in the DITA content will be "topic/index.html" instead of "topic/" so perhaps there's a way to strip off the "/index.html" part from the href when internal links are written?
The text was updated successfully, but these errors were encountered:
Jekyll allows various URL customizations (called "permalinks") for page output. One of them will turn...
into...
This allows for a URL like this: topics/my-topic/
If this is done on a site-wide level, any output from the OT will break because all of the links into the content are relative to the output file.
As simple workaround is probably to have an ant parameters that changes outext to "/index.html", so that the OT renders the filename as above.
The problem with that is all links in the DITA content will be "topic/index.html" instead of "topic/" so perhaps there's a way to strip off the "/index.html" part from the href when internal links are written?
The text was updated successfully, but these errors were encountered: