Skip to content
Snippets Groups Projects

Resolve "Add Js plugin to render 3D protein structure"

Merged Remi PLANEL requested to merge render-3d-protein-structure into dev
1 file
+ 3
6
Compare changes
  • Side-by-side
  • Inline
+ 3
6
@@ -11,15 +11,12 @@ const { page } = useContent();
const owner = ref("mdm-lab");
const repo = ref("wiki");
const branch = ref("main");
const baseUrl = ref(new URL("https://gitlab.pasteur.fr"));
// https://github.com/rplanel/defense-finder-wiki-test/edit/dev/content/1.introduction/0.index.md
const path = ref(
new URL(
const path = computed(() => {
return new URL(
`/${owner.value}/${repo.value}/-/edit/${branch.value}/content/${page.value._file}`,
baseUrl.value
).href
);
})
</script>
Loading