Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>Factory SupportNew to Visual Studio Code? Get it now.
Factory Support

Factory Support

Plixo

|
124 installs
| (1) | Free
Factory Precompiler Extension for VS Code
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Visual Studio Code Factory Transpiler Support

Badge Badge

supports

  • file conversion task
  • file conversion command
  • conversion from factory to html
    • normal tags, singletons and text
  • auto formatting
  • error detection (wip)

Syntax

meta(charset="UTF-8")
div(a="a") {
    div(b="b") {
        div(c="c" test) {
            "text"
            auto-formated() {

            }
        }
    }
    button(class="rounded") {
        "Click Me"
    }
}
div(a="b" *ngIf="showHello") {
    "hello"
    br()
    img(src="picture.png")
}

Output

<meta charset="UTF-8" />
<div a="a">
    <div b="b">
        <div c="c" test>
            text
            <auto-formated> </auto-formated>
        </div>
    </div>
    <button class="rounded">Click Me</button>
</div>
<div a="b" *ngIf="showHello">
    hello
    <br />
    <img src="https://github.com/Plixo2/vs-factory-support/raw/HEAD/picture.png" />
</div>
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft