Specify title in site config file
In this example Wallbag can extract article without a specific site config, but It can't set the title, there is a way to specify where is the title in site config?


http://siteconfig.fivefilters.org/grab.php?url=https://www.kapilarya.com/fix-you-cant-access-this-shared-folder-because-your-organizations-security-policies-block-unauthenticated-guest-access
# Generated by FiveFilters.org's web-based selection tool
# Place this file inside your site_config/custom/ folder
# Source: http://siteconfig.fivefilters.org/grab.php?url=https://www.kapilarya.com/fix-you-cant-access-this-shared-folder-because-your-organizations-security-policies-block-unauthenticated-guest-access
body: //div[contains(concat(' ',normalize-space(@class),' '),' entry-content ')]
test_url: https://www.kapilarya.com/fix-you-cant-access-this-shared-folder-because-your-organizations-security-policies-block-unauthenticated-guest-access
In Full-Text RSS the <title> element will be used if there are no explicit title elements specified. That should be the same thing you see in your browser tab when the page loads. I assume Wallabag would try to do the same. If you're able to test, you can try being explicit about it with the following:
title: //title
or to select the <h1> element:
title: //h1
You can try adding these one at a time, to the site config file to see if it pulls in the title.
Hello, I specified the title: //h1 and title: //title one at a time and It didn't work, I will update my Wallabag instance and try again, thanks.