We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Weird formatting issue with a youtube video. Noticed on dataset versioning page, but might be present elsewhere that has youtube videos
page: https://beta-docs.voxel51.com/teams/dataset_versioning/
The text was updated successfully, but these errors were encountered:
It appears there are two main options here:
So the iframe is fine and simple but requires adding CSS. The following is in source/enterprise/dataset_versioning.rst:
source/enterprise/dataset_versioning.rst
<div style="margin-top: 20px; margin-bottom: 20px"> <iframe id="youtube" src="https://www.youtube.com/embed/DKUkiDQVDqA?rel=0" frameborder="0" allowfullscreen> </iframe> </div>
The site's custom.css improves it with:
custom.css
#youtube { width: 100%; height: auto; aspect-ratio: 16 / 9; }
So I think the iframe reference in dataset_versioning.md should be similar.
dataset_versioning.md
Sorry, something went wrong.
No branches or pull requests
Weird formatting issue with a youtube video. Noticed on dataset versioning page, but might be present elsewhere that has youtube videos
page: https://beta-docs.voxel51.com/teams/dataset_versioning/
The text was updated successfully, but these errors were encountered: