diff --git a/idea/resources/intentionDescriptions/ToRawStringLiteralIntention/after.kt.template b/idea/resources/intentionDescriptions/ToRawStringLiteralIntention/after.kt.template new file mode 100644 index 00000000000..0f898619ce2 --- /dev/null +++ b/idea/resources/intentionDescriptions/ToRawStringLiteralIntention/after.kt.template @@ -0,0 +1,3 @@ +val s = """"Kotlin +is +good!"""" \ No newline at end of file diff --git a/idea/resources/intentionDescriptions/ToRawStringLiteralIntention/before.kt.template b/idea/resources/intentionDescriptions/ToRawStringLiteralIntention/before.kt.template new file mode 100644 index 00000000000..ad71958b333 --- /dev/null +++ b/idea/resources/intentionDescriptions/ToRawStringLiteralIntention/before.kt.template @@ -0,0 +1 @@ +val s = "\"Kotlin\nis\ngood!\"" \ No newline at end of file diff --git a/idea/resources/intentionDescriptions/ToRawStringLiteralIntention/description.html b/idea/resources/intentionDescriptions/ToRawStringLiteralIntention/description.html new file mode 100644 index 00000000000..bccaf9bda7c --- /dev/null +++ b/idea/resources/intentionDescriptions/ToRawStringLiteralIntention/description.html @@ -0,0 +1,5 @@ + + +This intention converts ordinary string literal to a raw string literal (one surrounded with triple quote characters). + + \ No newline at end of file