|
10 | 10 | <div class="ml-1 font-normal text-xs font-mono">
|
11 | 11 | <div
|
12 | 12 | class="px-1 py-0.5 rounded-md text-green-900 dark:text-green-300 bg-green-300 dark:bg-green-900 border border-green-500"
|
13 |
| - v-if="kind === Kind.Library"> |
| 13 | + v-if="kind === Kind.Library" |
| 14 | + > |
14 | 15 | lib
|
15 | 16 | </div>
|
16 | 17 | <div
|
17 | 18 | class="px-1 py-0.5 rounded-md text-purple-900 dark:text-purple-300 bg-purple-300 dark:bg-purple-900 border border-purple-500"
|
18 |
| - v-else-if="kind === Kind.Binary"> |
| 19 | + v-else-if="kind === Kind.Binary" |
| 20 | + > |
19 | 21 | bin
|
20 | 22 | </div>
|
21 | 23 | </div>
|
22 | 24 | </div>
|
23 | 25 | <div class="flex gap-x-1.5">
|
24 |
| - <a v-if="socials && socials.github" |
| 26 | + <a |
| 27 | + v-if="socials && socials.github" |
25 | 28 | class="flex items-center justify-center w-7 h-7 bg-gray-100 dark:bg-slate-950 border border-gray-200 rounded-full"
|
26 |
| - :href="socials.github"> |
| 29 | + :href="socials.github" |
| 30 | + > |
27 | 31 | <Icon class="w-4 h-4" name="octicon:mark-github-16"></Icon>
|
28 | 32 | </a>
|
29 |
| - <a v-if="socials && socials.docs" |
| 33 | + <a |
| 34 | + v-if="socials && socials.docs" |
30 | 35 | class="flex items-center justify-center w-7 h-7 bg-gray-100 dark:bg-slate-950 border border-gray-200 rounded-full"
|
31 |
| - :href="socials.docs" :title="`Chat about ${name} in the rust-seq Zulip`"> |
| 36 | + :href="socials.docs" |
| 37 | + :title="`Chat about ${name} in the rust-seq Zulip`" |
| 38 | + > |
32 | 39 | <Icon class="w-4 h-4" name="heroicons-outline:book-open"></Icon>
|
33 | 40 | </a>
|
34 |
| - <a v-if="socials && socials.zulip" |
| 41 | + <a |
| 42 | + v-if="socials && socials.zulip" |
35 | 43 | class="flex items-center justify-center w-7 h-7 bg-gray-100 dark:bg-slate-950 border border-gray-200 rounded-full"
|
36 |
| - href="https://rustseq.zulipchat.com" :title="`Chat about ${name} in the rust-seq Zulip`"> |
| 44 | + href="https://rustseq.zulipchat.com/join/coxb7c7b3bbahlfx7poeqqrd/" |
| 45 | + :title="`Chat about ${name} in the rust-seq Zulip`" |
| 46 | + > |
37 | 47 | <Icon class="w-4 h-4" name="tabler:brand-zulip"></Icon>
|
38 | 48 | </a>
|
39 | 49 | </div>
|
|
48 | 58 | <div class="terminal">
|
49 | 59 | <div class="command">
|
50 | 60 | <span class="prompt">$</span>
|
51 |
| - <span v-if="kind === Kind.Library"> |
52 |
| - cargo add {{ name }} |
53 |
| - </span> |
54 |
| - <span v-if="kind === Kind.Binary"> |
55 |
| - cargo install {{ name }} |
56 |
| - </span> |
| 61 | + <span v-if="kind === Kind.Library"> cargo add {{ name }} </span> |
| 62 | + <span v-if="kind === Kind.Binary"> cargo install {{ name }} </span> |
57 | 63 | </div>
|
58 | 64 | <Icon class="copy" name="heroicons-outline:clipboard-copy"></Icon>
|
59 | 65 | </div>
|
|
0 commit comments