How can I add a link to a YAML file that points to, e.g. another web site? The description field would be fine.
I read the YAML documentation but could not find a reference to "external references".
How can I add a link to a YAML file that points to, e.g. another web site? The description field would be fine.
I read the YAML documentation but could not find a reference to "external references".
Easy solution: descriptions use format Markdown, which allows links with the format
[I'm an inline-style link](https://www.google.com)
"[I'm an inline-style link](https://www.google.com)"This works
title: Test Release and Updates
name: Developed and maintained by Testing Team
description: <a href="http://testing.test123.org/xx3/landing.gsp">Testing Landing Page</a>
theme: jekyll-theme-cayman
github:
is_project_page: false
YAML does not include any kind of "import" or "include" statement.
BUT what you can do is to use PyYAML (documentation here).
Also, read this previous post, there are some solutions you may want to use to your case.