module Sass::Shared
def handle_interpolation(str)
-
(String)
- The text remaining in the scanner after all `#{`s have been processed
Other tags:
- Yieldparam: scan - The scanner scanning through the string
def handle_interpolation(str) scan = Sass::Util::MultibyteStringScanner.new(str) yield scan while scan.scan(/(.*?)(\\*)\#\{/m) scan.rest end