styling Markdown in Angular

796 Views Asked by At

I am using right now Angular and Scully I want to add style to the in markdown file in Angular. But I have no idea how to do it. The img right now is too big. Can someone give me advices?

Please take a look at those pictures below.

enter image description here

enter image description here

enter image description here

1

There are 1 best solutions below

5
Gérôme Grignon On BEST ANSWER

Each element of your mardown file will be rendered to a corresponding valid html tag. You can target these tags to style your rendered markdown pages.

For example :

# Title
<h1>Title</h1>

Here is how markdown is rendered : https://www.markdownguide.org/basic-syntax/