Ejemplo de archivos MDX
DominiosHostingNext JS
Something has always existed. According to physics, there can never be true physical nothingness—though there can be times when existence resembles nothing, such as a vacuum (the state of minimum possible energy) (Phys.org). Creating a space where there are no quantum fluctuations requires an enormous amount of energy, and there would be a remnant of that energy in that space afterwards if the fluctuations were flushed out, plus an unstable environment (1veritasium). Even on computers, deleted data is not actually tossed away, by rather written over.
- Logo / Intro
- Banners
- Transiciones
- Redes sociales
- Botón de suscribirse
- Link en la descripción
- Pantalla final
- Ver en YouTube
h1 Heading
h2 Heading
h3 Heading
h4 Heading
h5 Heading
h6 Heading
Horizontal Rules
Emphasis
This is bold text
This is bold text
This is italic text
This is italic text
Strikethrough
Blockquotes
Blockquotes can also be nested...
...by using additional greater-than signs right next to each other...
...or with spaces between arrows.
Lists
Módulo I - Parte 01
Unordered
lorem ipsum dolor sit amet
Copy Code
jQuery(function($){
$('.slide-stuff').slick({ // Define the class which will be used to designate the parent container for the Divi Modules that will make up our slides
infinite: true, // This sets our slider to slide infinitely in a loop
slidesToShow: 3, // How many slides should be visible at all times
slidesToScroll: 1 // How many slides should scroll
});
});
<link rel="stylesheet" type="text/css" href="/wp-content/themes/[your child theme folder]/slick/slick.css" />
<link rel="stylesheet" type="text/css" href="/wp-content/themes/[your child theme folder]/slick/slick-theme.css" />
<script type="text/javascript" src="/wp-content/themes/[your child theme folder]/slick/slick.min.js"></script>
SELECT * FROM users WHERE age > 18;
function helloWorld() {
console.log("Hello, World!");
}