1

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

Tùng Bill
  • 129
  • 1
  • 3
  • 12
  • Welcome to Stack Overflow. [Please don't post screenshots of text](https://meta.stackoverflow.com/a/285557/354577). They can't be searched or copied and offer poor usability. Instead, paste the code as text directly into your question. If you select it and click the `{}` button or Ctrl+K the code block will be indented by four spaces, which will cause it to be rendered as code. – ChrisGPT was on strike Aug 03 '20 at 12:24

1 Answers1

1

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/

Gérôme Grignon
  • 3,859
  • 1
  • 6
  • 18