Skip to content

Instantly share code, notes, and snippets.

@ManzDev
Last active October 17, 2024 15:21
Show Gist options
  • Save ManzDev/6c29fc4dd6ef63ec50baf95583401ab5 to your computer and use it in GitHub Desktop.
Save ManzDev/6c29fc4dd6ef63ec50baf95583401ab5 to your computer and use it in GitHub Desktop.
Example Markdown GitHub

✅ Titulares renderizados

Titulo HTML

Subtitulo HTML

❌ Botón HTML+JS no renderizado (ni javascript asociado) Test 1

<script> const firstButton = document.querySelector(".button-1"); firstButton.addEventListener("click", () => alert("hello!")); </script>

❌ Botón HTML no renderizado (ni javascript asociado) Test 2

Test 2

Hello, friend! Cerrar

❌ Iframes no renderizados

<iframe src="https://youtube.com/embed/8NjsfAkCCDk"></iframe>

❌ Custom Elements HTML+JS no renderizados

<script type="module"> customElements.define("web-component", class WebComponent extends HTMLElement { constructor() { super(); this.shadowRoot.innerHTML = `Componente: -> ${this.textContent} <-`; } }); </script>

Hello!

❌ Estilos CSS no renderizados

<style> iframe { border: 4px solid #000; } </style>

✅ Details renderizado

Hello, click me
Contents of accordion

❌ Medidores HTML no renderizados

❌ Barras de progreso HTML no renderizados

✅ Separación temática (linea)


❌ Lista de opciones Option 1 Option 2 Option 3

❌ Casilla de texto

❌ Casilla de verificación

❌ Casilla de radio

❌ Área de texto

<textarea>Ejemplo de textarea</textarea>

✅ Cita en bloque

Ejemplo de blockquote
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment