Align attachment

Hi,

Is there a way to center an attachment?

I can resize it using ![[image.png|300]], but is there a way to do something like ![[image.png|300|center]] to center it?

On GitHub, I would use HTML like this:

<div align="center">
  <img src='docs/time.svg' width=80px />
</div>

But I don’t think it works in SilverBullet.

Thanks!

Save in one of the Markdown File:

```space-style
.sb-inline-content img {
  margin: 0 auto;
}
```

Then, System Reload command.

Thanks, worked like a charm!