
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
script-viewer
Advanced tools
CodeViewer is a lightweight, customizable web component that makes it easy to display beautifully formatted code snippets on your website
CodeViewer is a lightweight, customizable web component that makes it easy to display beautifully formatted code snippets on your website. It uses Shadow DOM to encapsulate styles, ensuring that the component will not conflict with the rest of your page.
To use CodeViewer in your project, follow these steps:
highlight.js
library and the code-viewer.js
file in your HTML file:<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.5.1/highlight.min.js"></script>
<script type="module" src="https://cdn.jsdelivr.net/gh/t-montes/code-viewer@master/code-viewer.js"></script>
code-viewer
tag in your HTML to display code snippets:<code-viewer title="main.js">
console.log("Hello World!");
// more code here
</code-viewer>
title
and font-size
You can customize the appearance and behavior of the CodeViewer component using the following attributes:
title
: Sets the title of the code snippet, which is displayed in the header bar.font-size
: Adjusts the font size of the code within the viewer.Example with custom title and font size:
<code-viewer title="main.dart" font-size="1.2rem">
// code here
</code-viewer>
To style the component globally, you can target the code-viewer
element in your CSS:
code-viewer {
/* styles here */
}
Contributions are what makes the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star!
git checkout -b feature/amazing-feature
)git commit -m 'add some amazing-feature'
)git push origin feature/amazing-feature
)Distributed under the MIT License. See LICENSE
for more information.
FAQs
CodeViewer is a lightweight, customizable web component that makes it easy to display beautifully formatted code snippets on your website
We found that script-viewer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.