File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -616,7 +616,7 @@ Options:
616616 -c, --cacert FILENAME The path to trusted TLS CA certificates.
617617 --published Search only published content.
618618 --unpublished Search only unpublished content.
619- --content-type [unknown|shiny|rmd-static|rmd-shiny|static|api|tensorflow-saved-model|jupyter-static|python-api|python-dash|python-streamlit|python-bokeh|python-fastapi]
619+ --content-type [unknown|shiny|rmd-static|rmd-shiny|static|api|tensorflow-saved-model|jupyter-static|python-api|python-dash|python-streamlit|python-bokeh|python-fastapi|quarto-shiny|quarto-static ]
620620 Filter content results by content type.
621621 --r-version VERSIONSEARCHFILTER
622622 Filter content results by R version.
Original file line number Diff line number Diff line change @@ -81,6 +81,8 @@ class AppModes(object):
8181 STREAMLIT_APP = AppMode (10 , "python-streamlit" , "Streamlit Application" )
8282 BOKEH_APP = AppMode (11 , "python-bokeh" , "Bokeh Application" )
8383 PYTHON_FASTAPI = AppMode (12 , "python-fastapi" , "Python FastAPI" )
84+ SHINY_QUARTO = AppMode (13 , "quarto-shiny" , "Shiny Quarto Document" )
85+ STATIC_QUARTO = AppMode (14 , "quarto-static" , "Quarto Document" , ".qmd" )
8486
8587 _modes = [
8688 UNKNOWN ,
@@ -96,6 +98,8 @@ class AppModes(object):
9698 STREAMLIT_APP ,
9799 BOKEH_APP ,
98100 PYTHON_FASTAPI ,
101+ SHINY_QUARTO ,
102+ STATIC_QUARTO ,
99103 ]
100104
101105 @classmethod
You can’t perform that action at this time.
0 commit comments