From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <9front-bounces@9front.inri.net> X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-0.6 required=5.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: from 9front.inri.net (9front.inri.net [168.235.81.73]) by inbox.vuxu.org (Postfix) with ESMTP id 034F826550 for ; Mon, 3 Jun 2024 00:54:49 +0200 (CEST) Received: from sendmail.purelymail.com ([34.202.193.197]) by 9front; Sun Jun 2 18:53:46 -0400 2024 DKIM-Signature: a=rsa-sha256; b=kkuzrwx0jIqunYctrXYO+AXK6sy5pUY77TFlQLnv00ACe64AjBl8WZNJhQ7LbxLYZsm9D9J/qd3Ns9S+v9Y6k+X+DArgOAP4kFpvMJgWpgUuXRiiFAvxlb2116we3t2GST4xXCqs7R1RarQrUvy0DLRiCk50H0LBN3Tk9Ui5P7JcGg2Pg8eWN4KILN55KjRkFQG6fZMIjLwDi6cX4BynegDGuQisvQGiE1XSdA1nKEa/0W7PRXMrXcBisb8dsXAAu9K2fJrSINHB5S6PXqelkAOekGFI/UAK05ke5QDNN8STbBsSTLxcUuNrBU1xl90cybc4gHnfZRnrTn8iH7XG3Q==; s=purelymail2; d=pbrane.org; v=1; bh=7x1aivfgi/7Rxif3Qhf9HmdaKBpoVX7TPOn4cSAVajI=; h=Received:Date:From:To:Subject; DKIM-Signature: a=rsa-sha256; b=hpo52dG7s7x9p0n4mZeq6fgjun8og2iRPys6YncEG123Qyglrdi1alppMAGtnTKBzcs7qNfW7QWZpkLFbV0fluS3maPK4DdVDy7fDAvFhZioXM3RbkNe8QbaIbOuhyEq73s8c731B54tTEGvLUKbggj81yWLVJf+Dw7GK9kqo5pTpCYh0drwyiTtaurHXwu4zXqrAV0lDQ8wqmn4OuM5YD3M/R8h3yGYV4t2hxhVqHd8RLwc4+6UTRUQbarAjsFRiRd80nhExNlC2MZ/zh08CM7GBP3pQsWnv9fKWUFN14Tu677gSRWZjGmQmdNJlHgQKQF4VUuVWij6Ub4A29JIRg==; s=purelymail2; d=purelymail.com; v=1; bh=7x1aivfgi/7Rxif3Qhf9HmdaKBpoVX7TPOn4cSAVajI=; h=Feedback-ID:Received:Date:From:To:Subject; Feedback-ID: 10987:2443:null:purelymail X-Pm-Original-To: 9front@9front.org Received: by smtp.purelymail.com (Purelymail SMTP) with ESMTPSA id -1227446202 for <9front@9front.org> (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384); Sun, 02 Jun 2024 22:53:43 +0000 (UTC) Date: Sun, 2 Jun 2024 15:53:01 -0700 From: Anthony Martin To: 9front@9front.org Message-ID: References: <20240602214727.5acc13aa@ygrex-t550.ygrex.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240602214727.5acc13aa@ygrex-t550.ygrex.ru> List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: overflow-preventing decentralized API hosting SVG over ORM metadata scripting-scale hardware Subject: [9front] Re: Any way to insert code verbatim bypassing the rest of parsing in troff? Reply-To: 9front@9front.org Precedence: bulk ygrex once said: > As far as I figured it out, .DS/.DE block gives the best results but > can I bypass its backslash interpolation somehow? No. DS switches to a separate environment so you'd have to modify tmac.s to do this. > Second attempt to leverage .eo/.ec to keep backslashes, it does but > breaks code lines, I need to insert extra empty lines in between to > keep the lines. It looks worse than with .DS/.DE after all. You can turn off filling and disable the escape mechanism with: .nf .eo some text with backslashes like \ and \foo. and empty lines like above. just don't start a line with a control character: .this is good \.as is this .but not this 'or this. see? .ec .fi Cheers, Anthony