Your comments
Hello, currently, Textastic does not support file transclusion.
I'll consider adding it in a future update.
Hello,
I assume you are talking about the web preview. Textastic uses a standard web view that uses the same WebKit engine as Safari. So, the web preview should support everything that is supported by Safari.
I tried a simple example I found at https://jakearchibald.com/2017/es-modules-in-browsers/ and it worked:
module.html:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Test</title>
<script type="module">
import {addTextToBody} from './utils.js';
addTextToBody('Modules are pretty cool.');
</script>
</head>
<body>
</body>
</html>
utils.js:
export function addTextToBody(text) {
const div = document.createElement('div');
div.textContent = text;
document.body.appendChild(div);
}If I preview module.html in Textastic by tapping the "glasses" icon, it shows the message "Modules are pretty cool.".
Hello,
Textastic checks if Working Copy is installed and only then enables the "Select" button. Opening folders only works for file providers that store files locally - like a Git client. It does not work with cloud providers like OneDrive.
Hello,
I can gladly help you with issues using Textastic itself, but help with specific HTML or creating websites in general is outside the scope of this support forum, sorry.
Hello,
this sound like a useful ideal - I guess it would only work on iPad because of the limited space on iPhone.
Hello, please have a look at the Settings app -> General -> Language & Region.
You can set a preferred order of languages there using the Edit button in the top right corner. Maybe you have German set before English for some reason?
Hello,
this is explained in the manual at https://www.textasticapp.com/v7/manual/remote_servers/ssh_terminal.html
It looks like there are smart quotes instead of regular quotes in your text file.
Current versions of Textastic disable smart quotes by default. You can also disable smart punctuation in the Settings app > General > Keyboard.
Customer support service by UserEcho
I'm not aware of any problems in general with the update, but looking at the screenshots I would suggest to restart your Mac and try it again.
You may also try to delete the app from Applications and download it again from the Mac App Store instead of updating.