@* Views/Shared/_ConverterWidget.cshtml *@
@if (ViewBag.ConverterType == "file") {

@ViewBag.FileHelpText
} @if (ViewBag.ConverterType == "text") {
@ViewBag.InputHelpText
} @if (ViewBag.ConverterType == "url") {
@ViewBag.InputHelpText
}
@if (ViewBag.HasAdvancedOptions == true) {
@{ try { await Html.RenderPartialAsync("_AdvancedOptions"); } catch {
Opções avançadas não disponíveis para este conversor.
} }
}
@if (ViewBag.OutputType == "text") { } else if (ViewBag.OutputType == "download") { } else if (ViewBag.OutputType == "preview") {

@ViewBag.PreviewPlaceholder

}