35 lines
796 B
Vue
35 lines
796 B
Vue
<template>
|
|
<LayoutMinimal title="Tools">
|
|
<BaseTitle>
|
|
JSON to CSV
|
|
<br/>
|
|
<small>by Linus Kämmerer</small>
|
|
</BaseTitle>
|
|
<BaseTitle size="tiny">
|
|
<b-link href="https://gist.github.com/linuskmr/856459cdf6c7ea460503b92e00b2aa26">
|
|
<b-icon-github></b-icon-github>
|
|
GitHub
|
|
</b-link>
|
|
</BaseTitle>
|
|
<p class="monospace">
|
|
Python script to convert exported Juggl data from a JSON to a CSV file.
|
|
</p>
|
|
</LayoutMinimal>
|
|
</template>
|
|
|
|
<script>
|
|
// @ is an alias to /src
|
|
import LayoutMinimal from "@/components/layout/LayoutMinimal";
|
|
import BaseTitle from "@/components/base/BaseTitle";
|
|
|
|
export default {
|
|
name: "ToolsDocumentation",
|
|
components: {
|
|
LayoutMinimal,
|
|
BaseTitle
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style lang="sass" scoped>
|
|
</style>
|