Displaying 2 results from an estimated 2 matches for "26nbsp".
2012 Oct 30
4
horizontal space/indent and HTML/PDF
What is the best method to introduce horizontal space in text in a
Pandoc document? Preferably something that would work for both HTML
and PDF output?
I need this for some poetry that has indented lines, ala the 2nd and 3rd lines:
hickory dickory dock
the most ran up the clock
the clock struck one
the mouse ran down
c
--
Chris Lott <chris at chrislott.org>
2024 Sep 24
1
Provincia y municipio en Shiny
Isidro:
La segunda lista se tiene que generar en el server con el filtro que quieras:
- En UI, creas un elemento uiOutput, por ejemplo con id = id1
- Tendrás la lista de provincias en otro input, por ejemplo con id = id0
- En Server, lo renderizas con output$id1 <- renderUI()
- Este renderUI devuelve la lista de municipios ya filtrada, usando el filtro de input$id0
Aquí lo explica Hadley