• Avoid aligning the opening and closing delimiters and the text block's left margin. This requires reindentation of the text block if the variable name or modifiers are changed.

    // ORIGINAL
    String string = """
                            Ohlala
                            Sapristi
                            Bigre
                            """;
    
    // ORIGINAL - after variable declaration changes
    static String interjections = """
                                                 Ohlala
                                                 Sapristi
                                                 Bigre
                                                 """;
    
    // BETTER
    String string = """
        Ohlala
        Sapristi
        Bigre
        """;
    
    // BETTER - after variable declaration changes
    static String interjections = """
        Ohlala
        Sapristi
        Bigre
        """;