Skip to content

Commit

Permalink
Update palabras1.html
Browse files Browse the repository at this point in the history
  • Loading branch information
luisangelmaciel committed Mar 28, 2024
1 parent 8a0f1e3 commit f91e30e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion palabras1.html
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ <h1>Generador de Archivo Markdown</h1>
contenidoMarkdown += 'keywords: ' + '"' + keywords + '"' + '\n';
contenidoMarkdown += 'url: ' + '"' + url + '"' + '\n';
contenidoMarkdown += 'permalink: ' + '"' + url + '"' + '\n';
contenidoMarkdown += 'permalink: ' + '/{{ title | slugify }}/' + '\n';
contenidoMarkdown += 'tags:\n' + tagsMarkdown + '\n'; // Agregar las etiquetas formateadas al contenido Markdown

contenidoMarkdown += 'ogImage: ' + '"' + ogImage + '"' + '\n';
Expand Down Expand Up @@ -257,4 +258,5 @@ <h1>Generador de Archivo Markdown</h1>
var blob = new Blob([contenidoMarkdown], { type: 'text/markdown' });
var a = document.createElement('a'); a.href = URL.createObjectURL(blob); a.download = url + '.md'; a.click();}
</script><script>document.addEventListener("DOMContentLoaded", function() {mostrarInfo();});</script>
</section></body></html>
</section></body></html>

0 comments on commit f91e30e

Please sign in to comment.