diff --git a/src/assets/icons/anchor.svg b/src/assets/icons/anchor.svg deleted file mode 100644 index f98164372..000000000 --- a/src/assets/icons/anchor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/components/Document/Document.scss b/src/components/Document/Document.scss index 7aff8e271..5442e7e7e 100644 --- a/src/components/Document/Document.scss +++ b/src/components/Document/Document.scss @@ -8,13 +8,7 @@ :global { .anchor { visibility: hidden; - background-image: url('../../assets/icons/anchor.svg'); - background-repeat: no-repeat; - background-size: 100%; - background-position: 0 center; - margin-left: -26px; - width: 20px; - display: inline-block; + color: #ccc; } } diff --git a/src/utils/markdown.js b/src/utils/markdown.js index 475e70a10..f6bc68493 100644 --- a/src/utils/markdown.js +++ b/src/utils/markdown.js @@ -16,10 +16,8 @@ renderer.heading = (text, level) => { const headingSlug = slug(text); return ` - -   - ${text} + # `; },