discuss@lists.openscad.org

OpenSCAD general discussion Mailing-list

View all threads

test message, ignore

O
openscad@jordan.maileater.net
Wed, Apr 6, 2022 6:26 PM

Just trying to understand the web UI’s formatting.

Using the <> button, where you have to use shift+Enter between lines or it reverts back to normal.

module foo() {
do();
some();
thing();
}

Normal:

module bar() {

something();

else();

}

Using Type / Code:

module baz() {
    how();
    about();
    this();
}

and back to normal after Shift+Enter.

Just trying to understand the web UI’s formatting. Using the <> button, where you have to use shift+Enter between lines or it reverts back to normal. `module foo() {`\ ` do();`\ ` some();`\ ` thing();`\ `}` Normal: module bar() { something(); else(); } Using Type / Code: ``` module baz() { how(); about(); this(); } ``` and back to normal after Shift+Enter.