Plugin to make headings bold?

What I’m trying to do

I need a plugin to surround headings with ** to make them bold automatically, they look fine inside Obsidian, but when you export it to PDF they won’t be bold unless you made them, I was wondering if there is a plugin to do that automatically so I won’t have to worry about that.

Things I have tried

Tried looking for one, but haven’t found anything.

Use some different theme, which has the CSS packed in it so you will have distinctive headers.
Or look for a CSS solution specifically, using forum search.
We don’t surround headers with **.

sry im quite new to obsidian, my issue is that the headings look bold inside obsidian but when i export as pdf they arent

As Yurcee mentioned, this has to do with the theme (and/or CSS) you are using.

If you share what theme you are using and example text of a heading, in a code block, someone can probably have a look.

Also, there may be many different kinds of export plugins. I don’t know what settings they come equipped with.

My solution is to use CSS rather than change the format in markdown.

The css snippet that I use:

.theme-dark {
  --h1-color:#06d74cdc;
  --h2-color:#01a6cbcf;
  --h3-color:#6ea6f9;
  --h4-color:hsl(244, 76%, 79%);
  --h5-color:#cd7af3d2;
}

.theme-light {
  --h1-color:#00bb5d;
  --h2-color:#996b00cf;
  --h3-color:#005be4;
  --h4-color:hsl(268, 47%, 52%);
  --h5-color:#c100a4d2;
}

.HyperMD-header.HyperMD-header-1 {
  box-sizing: border-box;
  border-bottom-color: var(--h1-color);
  border-bottom-style: solid;
}

in Editor

in PDF