Your comments

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?

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. 

Hello,


no, sorry, currently you can only hide the headers and footers but not edit them.

Hello, 


I assume that .ph files can be highlighted using the standard Perl syntax definition. After opening the .ph file, you can select "Perl" as the syntax definition in the File Properties. 


(See https://www.textasticapp.com/v7/manual/viewing_editing_files/file_properties.html)