mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-10-31 23:26:18 +00:00
fa61bc53fc
* TW5-es-ES-edition Spanish edition of TW5. A full localisation of TiddlyWiki into castillian spanish (es-ES). * Translation ongoing * Translation ongoing * Translation ongoing * Translation ongoing + TiddlySpot upload * Translation ongoing * Translation ongoing + macro fixes * Translation ongoing * translation ongoing + macro fixes * Translation ongoing * Translation ongoing * Translation ongoing * Translation ongoing * Translation ongoing * translation ongoing * translation ongoing * Translation ongoing * translation ongoing * translation ongoing * translation ongoing * Arreglo plugin * Arreglo plugin * Translation ongoing * Translation ongoing * Translation ongoing * translation ongoing * Add Spanish edition to TW5.com * Reverting forced language plugin load. folder es-ES was provisorily added to the tiddlerStore in order to force the load of the updated language plugin. Finished the translation, and with the updated plugin on place, this folder has no use when the new release comes out.
47 lines
1.3 KiB
Plaintext
47 lines
1.3 KiB
Plaintext
caption: Subhistorias
|
|
created: 20140214215718317
|
|
es-title: Crear subhistorias en TiddlyWiki
|
|
modified: 20160418043031981
|
|
tags: Learning
|
|
title: Creating SubStories
|
|
type: text/vnd.tiddlywiki
|
|
|
|
Este ejemplo muestra cómo, dentro de un un tiddler, se pueden mostrar subhistorias independientes de la historia principal.
|
|
|
|
Este es el código:
|
|
|
|
```
|
|
<$navigator story="MiSubHistoria" history="MiSubHistoria">
|
|
|
|
Haz clic en este enlace para empezar:[[¡Hola! ¿Qué tal?|HelloThere]]
|
|
|
|
<$list filter="[list[MiSubHistoria]]" history="MiSubHistoria">
|
|
<div>
|
|
|
|
! <$button message="tm-close-tiddler" class="tc-btn-invisible">{{$:/core/images/close-button}}</$button> <$view field="es-title"/>
|
|
|
|
<$transclude/>
|
|
</div>
|
|
</$list>
|
|
|
|
</$navigator>
|
|
```
|
|
|
|
Ahora puedes abrir el tiddler [[¡Hola! ¿Qué tal?|HelloThere]] como subhistoria haciendo clic en el siguiente enlace. Los enlaces de la subhistoria se abren en la subhistoria y no en la principal.
|
|
|
|
<$navigator story="MiSubHistoria" history="MiSubHistoria">
|
|
|
|
Haz clic en este enlace para empezar:[[¡Hola! ¿Qué tal?|HelloThere]]
|
|
|
|
<$list filter="[list[MiSubHistoria]]" history="MiSubHistoria">
|
|
<div>
|
|
|
|
! <$button message="tm-close-tiddler" class="tc-btn-invisible">{{$:/core/images/close-button}}</$button> <$view field="es-title"/>
|
|
|
|
<$transclude/>
|
|
|
|
</div>
|
|
</$list>
|
|
|
|
</$navigator>
|