Subir contenidos (artículos por ejemplo) puede llevar tiempo. ¿Cómo organizar todo para ahorrar mucho tiempo?
En este 🧵, te lo explico.
Etapa 1: Organiza tus documentos
Para que el proceso funcione, tienes que trabajar con archivos .docx.
¿Es un problema si trabajas con Google Docs? No, todas las funcionalidades (comentarios, edición...) soportan los archivos .docx.
Además, tienes que usar una estructura coherente para tus contenidos, usando los encabezados.
Parece una tontería, pero la cantidad de documentos que no los usan me sigue sorprendiendo.
Etapa 2: convertir tus documentos en HTML
Existe un proyecto (pypi.org/project/mammot…) que te permite convertir en muy pocas líneas archivos docx en html.
Si alguien conoce una alternativa que no requiera Python, adelante, pero no encontré.
Ahora entiendes por qué necesitas tener archivos DOCX bien organizados: tus encabezados se convertirán en <hn>, tus textos en negrita en <strong> etc...
La verdad es que el resultado es de muy buena calidad.
¿Es caro? Depende de tu punto de vista, pero te ahorrará mucho tiempo. En mi caso, compensa.
Crea un CSV con toda las información que necesitas. En mi caso, suele ser por lo menos:
1. Título de la entrada 2. Meta Title 3. Meta Description 4. Contenido (el HTML) 5. Categoría 6. URL (slug)
Durante el proceso de importación, podrás indicar al plugin que el contenido de tu entrada se encuentra en una de las columnas de tu CSV.
En mi caso, en "content".
Tienes un botón de "Preview" para asegurarte que tu contenido se importe bien.
Siguiendo este método, puedes importar una cantidad impresionante de contenidos en poco tiempo. Eso sí, tu proyecto requiere un poco de organización desde un principio.
Pero vale la pena, ¿no crees?
• • •
Missing some Tweet in this thread? You can try to
force a refresh
Let's go through the most common formulas you need to master to work quicker.
Most of them can also be used in Excel, but not all of them.
1. VLOOKUP
THE formula you have to master because it allows you to merge data from different tables. Very useful to combine Search Console and Analytics data, for instance.
You have to master it.
2. FILTER
I've explained everything about this formula in a separate thread:
🕵️ How can you spy on a competitor's content strategy? 🕵️
Your strategy must never be a simple pale copy of what others are doing, but it's always a good idea to know what they are up to.
Let me show you, with a real example, how you can generate insights quickly.
Let's assume we're working in the travel industry and one of our competitors is Skyscanner.
We want to understand what they are doing on their blog and generate some insights based on the data we have at our disposal.
First step: get an exhaustive list of their URLs
This could be done through a crawl, but I'd rather get the list from a sitemap. Not always doable, but in this case, it was easy to find what I was looking for.
Content rehydration is a process that occurs when a website, built with a JavaScript framework, such as Angular or React, dynamically updates the content on a page without requiring a full-page refresh.
Why using rehydration instead of relying only on SSR? It is faster!
What is the issue with content rehydration?
It will add a script to the raw response sent by your server with all the required code to make the application dynamic. Out-of-the-box, this script can easily represent more than 90% of the total HTML size.