How to get quarto extensions list and versions? #10738
-
DescriptionSimilar to how |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
I don't think so. Edit: here one #!/usr/bin/env bash
echo -e "Title\tAuthor\tVersion\tPath"
find _extensions -type f -path '*/_extension.yml' | while read -r file; do
title=$(grep -m 1 '^title:' "$file" | sed 's/title: //')
author=$(grep -m 1 '^author:' "$file" | sed 's/author: //')
version=$(grep -m 1 '^version:' "$file" | sed 's/version: //')
echo -e "${title}\t${author}\t${version}\t${file}"
done |
Beta Was this translation helpful? Give feedback.
-
Use the In a project where I installed the fontawesome extension, here is what I get
Hope it helps |
Beta Was this translation helpful? Give feedback.
Use the
quarto list
command: https://quarto.org/docs/extensions/managing.html#updatingIn a project where I installed the fontawesome extension, here is what I get
Hope it helps