Skip to content

Commit

Permalink
Update README to include yarn format step
Browse files Browse the repository at this point in the history
  • Loading branch information
bubelov committed Sep 24, 2024
1 parent 7c5f900 commit e43a8d8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
1. `git clone` the repo and `cd` into the directory
2. run `yarn` to install the packages
3. `yarn dev` will open the app on `localhost:5173`
4. after making edits run `yarn format` to format the Markdown files

_NOTE:_ BTC Map uses the latest LTS version of [node](https://nodejs.org/). If you have [NVM](https://github.com/nvm-sh/nvm), you can simply run `nvm use` in the root directory of the repo to switch to the supported node version.

Expand Down
16 changes: 13 additions & 3 deletions src/components/AreaActivity.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,19 @@
</script>

<section id="feeds">
<div class="w-full rounded-3xl border border-statBorder dark:bg-white/10 p-3">
<p><a class="text-center font-semibold text-link" href="https://api.btcmap.org/feeds/new-places/{alias}">New Places Atom Feed</a></p>
<p class="mt-2"><a class="text-center font-semibold text-link mt-6" href="https://api.btcmap.org/feeds/new-comments/{alias}">New Comments Atom Feed</a></p>
<div class="w-full rounded-3xl border border-statBorder p-3 dark:bg-white/10">
<p>
<a
class="text-center font-semibold text-link"
href="https://api.btcmap.org/feeds/new-places/{alias}">New Places Atom Feed</a
>
</p>
<p class="mt-2">
<a
class="mt-6 text-center font-semibold text-link"
href="https://api.btcmap.org/feeds/new-comments/{alias}">New Comments Atom Feed</a
>
</p>
</div>
</section>

Expand Down

0 comments on commit e43a8d8

Please sign in to comment.