Formato obsidian
Skill Vasallo94/skill-issue/skills/obsidian/formato-obsidian
Referencia de sintaxis Obsidian Flavored Markdown. Consultar cuando se escriban notas que usen wikilinks, embeds, callouts, block IDs, math, footnotes u otra sintaxis especifica de Obsidian.From its SKILL.md
npx -y skills add Vasallo94/skill-issue --skill formato-obsidianAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
6.5 KB, ~1.9k tokens by cl100k_base, as published. Nobody here has run it
Formato Obsidian - Referencia de Sintaxis
Skill de referencia para escribir Obsidian Flavored Markdown correctamente. Cubre las extensiones de Obsidian sobre CommonMark y GFM. El Markdown estandar (cabeceras, negrita, cursiva, listas, citas, bloques de codigo, tablas) se asume como conocimiento previo.
[!CAUTION] Antes de crear o editar notas, lee las [[.agents/REGLAS_GLOBALES|Reglas Globales]]. Esta skill complementa las reglas con la sintaxis exacta.
Enlaces internos (Wikilinks)
[[Nombre de Nota]] Enlace a nota
[[Nombre de Nota|Texto visible]] Texto personalizado
[[Nombre de Nota#Cabecera]] Enlace a cabecera
[[Nombre de Nota#^block-id]] Enlace a bloque
[[#Cabecera en la misma nota]] Enlace a cabecera local
Para definir un block ID, anadir ^block-id al final de cualquier parrafo:
Este parrafo puede ser enlazado directamente. ^mi-block-id
Para listas y citas, colocar el block ID en una linea separada despues del bloque:
> Una cita
^id-cita
[!TIP] Usar
[[wikilinks]]para notas dentro del vault (Obsidian gestiona renombrados automaticamente). Usar[texto](url)solo para URLs externas.
Embeds
Prefijar cualquier wikilink con ! para incrustar su contenido:
![[Nombre de Nota]] Incrustar nota completa
![[Nombre de Nota#Cabecera]] Incrustar seccion
![[imagen.png]] Incrustar imagen
![[imagen.png|300]] Imagen con ancho
![[imagen.png|640x480]] Imagen con ancho x alto
![[documento.pdf]] Incrustar PDF
![[documento.pdf#page=3]] Pagina especifica del PDF
![[audio.mp3]] Incrustar audio
Imagenes externas:


Incrustar resultados de busqueda:
```query
tag:#proyecto status:completo
```
Callouts
> [!note]
> Callout basico.
> [!warning] Titulo personalizado
> Callout con titulo propio.
> [!faq]- Colapsado por defecto
> Contenido plegable (- colapsado, + expandido).
Callouts anidados:
> [!question] Callout exterior
> > [!note] Callout interior
> > Contenido anidado
Tipos de callout disponibles
| Tipo | Aliases | Uso |
|---|---|---|
note | - | Informacion contextual |
abstract | summary, tldr | Resumenes |
info | - | Datos informativos |
todo | - | Pendientes |
tip | hint, important | Recomendaciones |
success | check, done | Confirmaciones |
question | help, faq | Preguntas frecuentes |
warning | caution, attention | Advertencias y riesgos |
failure | fail, missing | Fallos |
danger | error | Peligros criticos |
bug | - | Errores conocidos |
example | - | Ejemplos |
quote | cite | Citas |
[!IMPORTANT] En nuestro vault usamos principalmente
note,tip,warning,importantycautionsegun las Reglas Globales.
Frontmatter (Properties)
---
created: 2026-06-09
type: conocimiento
status: borrador
tags:
- tema
aliases:
- Nombre Alternativo
cssclasses:
- clase-css
---
Tipos de propiedades
| Tipo | Ejemplo |
|---|---|
| Texto | title: Mi Titulo |
| Numero | rating: 4.5 |
| Checkbox | completed: true |
| Fecha | created: 2026-06-09 |
| Fecha y hora | due: 2026-06-09T14:30:00 |
| Lista | tags: [uno, dos] o lista YAML |
| Enlaces | related: "[[Otra Nota]]" |
Propiedades por defecto de Obsidian
tags— etiquetas de la nota (buscables, visibles en el grafo)aliases— nombres alternativos (aparecen en sugerencias de enlace)cssclasses— clases CSS aplicadas a la nota
Propiedades de nuestro vault
type— tipo de nota (obligatorio, ver Reglas Globales)status— estado:borrador,en_proceso,completo,archivocreated— fecha de creacionupdated— fecha de ultima edicion (solo al editar)source_url— URL de origen (para recursos)source_type— tipo de fuente (para recursos)
Tags
#tag Tag inline
#nested/tag Tag con jerarquia
#tag-con-guiones Guiones permitidos
#tag_con_guion_bajo Guiones bajos permitidos
Restricciones: pueden contener letras, numeros (no como primer caracter), guiones bajos, guiones y barras / (para anidamiento).
[!WARNING] En nuestro vault las tags son solo para tematica. Estado y tipo van en frontmatter.
Comentarios
Texto visible %%pero esto esta oculto%% en vista de lectura.
%%
Este bloque completo esta oculto en vista de lectura.
%%
Resaltado
==Texto resaltado==
Matematicas (LaTeX)
Inline:
La formula $e^{i\pi} + 1 = 0$ es elegante.
Bloque:
$$
\frac{a}{b} = c
$$
Diagramas Mermaid
```mermaid
graph TD
A[Inicio] --> B{Decision}
B -->|Si| C[Hacer esto]
B -->|No| D[Hacer aquello]
```
Para enlazar nodos Mermaid a notas de Obsidian:
```mermaid
graph TD
A[Mi Nota]
class A internal-link;
```
[!WARNING] Recordar: evitar
()dentro de nodos[], usar etiquetas en flechas para detalles. Ver skill [[diagrama-arquitectura]] para convenciones avanzadas.
Notas al pie
Texto con una nota al pie[^1].
[^1]: Contenido de la nota al pie.
Nota al pie inline.^[Esto es inline.]
Ejemplo completo
---
created: 2026-06-09
type: conocimiento
status: borrador
tags:
- arquitectura
---
# Patrones de Diseno en Python
Este documento recopila los patrones mas usados en [[Proyecto Alpha]].
> [!important] Contexto
> Estos patrones se aplican al ==backend== del proyecto.
## Singleton
El patron Singleton garantiza una unica instancia[^1].
```python
class Singleton:
_instance = None
@classmethod
def get_instance(cls):
if cls._instance is None:
cls._instance = cls()
return cls._instance
```
La complejidad es $O(1)$ para cada acceso. Ver [[Algoritmos#Complejidad]] para mas detalle.
![[diagrama-singleton.png|600]]
Revisado en [[Reunion 2026-06-09#Decisiones]].
[^1]: Gamma et al., Design Patterns, 1994.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.
Gives 2 of the 12 instructions most note taking skills give in ~1.9k tokens
Counted across 632 of the 857 authors here whose files we hold, read 2026-09-06
- Use standard Markdown links for external URLshere, and in 16 of 632, across 8 files
- Use wikilinks for internal vault connectionshere, and in 15 of 632, across 7 files
- Embed content using the exclamation mark prefixin 14 of 632, across 6 files
- Ask for clarification if the user request is ambiguousin 13 of 632
- Add frontmatter properties at the top of the filein 12 of 632, across 4 files
- Verify note renders correctly in reading viewin 12 of 632, across 4 files
- Include a visual element on every slidein 11 of 632, across 5 files
- Left-align body text and listsin 11 of 632, across 5 files
- Maintain 0.5 inch minimum marginsin 11 of 632, across 5 files
- Wrap formulas containing double quotes in single quotesin 11 of 632, across 5 files
- Repeat one distinctive visual motif across all slidesin 10 of 632, across 4 files
- Use 36pt or larger for slide titlesin 10 of 632, across 4 files
Said here and by no other author read
- Use callouts for contextual information
- Define note metadata in YAML frontmatter
- Use tags only for thematic categorization
- Place status and type in frontmatter properties
- Read global rules before creating or editing notes
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.